diff --git a/components/features.tsx b/components/features.tsx new file mode 100644 index 0000000..2669985 --- /dev/null +++ b/components/features.tsx @@ -0,0 +1,103 @@ +"use client"; +import { Container } from "@/components/container"; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { + Scissors, + Music, + Type, + Sparkles, + Zap, + Palette, + Brain, + Clock, + TrendingUp +} from "lucide-react"; + +export function Features() { + const features = [ + { + icon: Brain, + title: "AI-Powered Editing", + description: "Advanced AI analyzes your footage and automatically identifies the best moments, cuts boring parts, and maintains perfect pacing.", + }, + { + icon: Scissors, + title: "Smart Auto-Cut", + description: "Removes silences, pauses, and filler words. Keeps only the most engaging content that hooks viewers instantly.", + }, + { + icon: Music, + title: "Beat-Synced Music", + description: "Add trending music that syncs perfectly with your cuts. AI matches transitions to the beat for maximum impact.", + }, + { + icon: Type, + title: "Dynamic Text Overlays", + description: "Auto-generate captions with bold, animated text. Highlight key words and phrases that grab attention.", + }, + { + icon: Sparkles, + title: "Pro Transitions", + description: "Smooth zoom effects, whip pans, and motion blur transitions that make your content look professionally edited.", + }, + { + icon: Palette, + title: "Color Grading", + description: "Apply cinematic color grades and corrections automatically. Make your videos pop with vibrant, consistent colors.", + }, + { + icon: Clock, + title: "10x Faster", + description: "What takes hours in traditional editing software happens in minutes. Upload, instruct, and download—that's it.", + }, + { + icon: TrendingUp, + title: "Viral Optimization", + description: "Trained on millions of viral videos. AI knows what works and applies proven patterns to maximize engagement.", + }, + { + icon: Zap, + title: "One-Click Export", + description: "Export in perfect formats for Instagram Reels, YouTube Shorts, or TikTok. Optimized resolution and aspect ratios.", + }, + ]; + + return ( +
+ +
+

+ Everything You Need to Go{" "} + + Viral + +

+

+ Professional video editing features powered by AI. No experience needed. +

+
+ +
+ {features.map((feature, index) => ( + + +
+ +
+ {feature.title} +
+ + + {feature.description} + + +
+ ))} +
+
+
+ ); +}