From b1708b2dfc77c671bd6ae0eb0d8756afcc59dd39 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 23:07:29 +0000 Subject: [PATCH 1/3] Add src/app/features/page.tsx --- src/app/features/page.tsx | 112 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 src/app/features/page.tsx diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..ce963cd --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,112 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles, Zap, TrendingUp, Star, Crown } from "lucide-react"; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From 98ac3d397e5a164d5ec708b31e6001e35ab37df0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 23:07:30 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 55 +++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 29e9f42..3308513 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Sparkles, Zap, TrendingUp, Star, Crown } from "lucide-react"; +import { Sparkles, Zap, TrendingUp, Star, Crown, Users } from "lucide-react"; export default function LandingPage() { return ( @@ -149,35 +149,35 @@ export default function LandingPage() { id: "free", title: "Get Started", price: "Free", period: "", features: [ "1 video/month", "480p resolution", "Basic templates", "Watermark included", "Limited AI voices (5)", "Basic captions (3 styles)", "Perfect for trying it out" ], - button: { text: "Start Free", href: "#" }, + button: { text: "Start Free", href: "#hero" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGykJLWuejlEv5Zr54ZFlJ2tfV/a-tiktok-style-vertical-video-preview-sh-1774130479551-8a68bd8f.png?_wi=1", imageAlt: "Free tier - TikTok style video" }, { id: "starter", title: "Popular", price: "$10/mo", period: "", features: [ "200 credits/month", "No watermark", "Basic styles + Subtitles", "25+ trending templates", "150+ AI voices", "Advanced captions (10 styles)", "Priority support", "Perfect for casual creators" ], - button: { text: "Start Now", href: "#" }, + button: { text: "Start Now", href: "#community" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGykJLWuejlEv5Zr54ZFlJ2tfV/a-vertical-product-showcase-video-in-9-1-1774130481988-5b814438.jpg?_wi=2", imageAlt: "Starter tier - Product showcase" }, { id: "creator", title: "Most Popular", price: "$29/mo", period: "", features: [ "800 credits/month", "Custom AI avatars (face upload)", "Avatars + Music + Templates", "All trending templates + custom", "150+ voices, 50+ languages", "Animated caption styles (25+)", "AI music stems (custom mixing)", "Analytics dashboard", "Perfect for serious creators" ], - button: { text: "Upgrade Now", href: "#" }, + button: { text: "Upgrade Now", href: "#community" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGykJLWuejlEv5Zr54ZFlJ2tfV/a-vertical-educational-explainer-video-i-1774130480241-8a246d9a.png?_wi=2", imageAlt: "Creator tier - Educational video" }, { id: "pro", title: "Premium Power", price: "$49/mo", period: "", features: [ "2,500 credits/month", "4K unlimited (no credit penalty)", "Priority generation queue", "Trend detector included", "Multi-video batch generation", "Real-time collab editing", "Video remix & continuation", "Advanced analytics", "Trend alerts", "Perfect for YouTube/Reels pros" ], - button: { text: "Go Pro", href: "#" }, + button: { text: "Go Pro", href: "#community" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGykJLWuejlEv5Zr54ZFlJ2tfV/a-tiktok-style-vertical-video-preview-sh-1774130479551-8a68bd8f.png?_wi=2", imageAlt: "Pro tier - Trending video" }, { id: "business", title: "Enterprise", price: "$149/mo", period: "", features: [ "Unlimited credits", "Team seats (up to 5)", "API access", "White-label option", "Brand kit management", "Full video editing suite", "24/7 priority support", "Custom integrations", "Perfect for agencies & e-commerce" ], - button: { text: "Contact Sales", href: "#" }, + button: { text: "Contact Sales", href: "#community" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BGykJLWuejlEv5Zr54ZFlJ2tfV/a-vertical-product-showcase-video-in-9-1-1774130481988-5b814438.jpg?_wi=3", imageAlt: "Enterprise tier - Advanced showcase" } ]} @@ -253,6 +253,45 @@ export default function LandingPage() { /> +
+ +
+