From cfc8f3c75c13ae003b3fc368de8302d0d07a5cd0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 11:15:33 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 93 ++++++++++++++++-------------------------------- 1 file changed, 31 insertions(+), 62 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index df3f597..86dc14a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,11 +3,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import { BarChart, TrendingUp, Users } from "lucide-react"; +import { BarChart, TrendingUp, Users, Github, Twitter, Linkedin } from "lucide-react"; export default function LandingPage() { return ( @@ -15,46 +15,35 @@ export default function LandingPage() { defaultButtonVariant="bounce-effect" defaultTextAnimation="reveal-blur" borderRadius="pill" - contentWidth="small" - sizing="largeSmallSizeLargeTitles" - background="floatingGradient" - cardStyle="subtle-shadow" - primaryButtonStyle="flat" - secondaryButtonStyle="radial-glow" - headingFontWeight="light" + contentWidth="medium" + sizing="largeSizeMediumTitles" + background="noise" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="layered" + headingFontWeight="semibold" >
@@ -67,13 +56,16 @@ export default function LandingPage() { features={[ { id: 1, - title: "Base Image Upload", description: "Upload high-quality character references for consistent video output.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfbobpgUKOEquVVZyWN3qFCdB/ugc-video-generator-interface-for-ai-cha-1774609903370-29358a3a.png?_wi=1"}, + title: "Base Image Upload", description: "Upload high-quality character references for consistent video output.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfbobpgUKOEquVVZyWN3qFCdB/ugc-video-generator-interface-for-ai-cha-1774609903370-29358a3a.png?_wi=1" + }, { id: 2, - title: "Motion Transfer", description: "Upload reference MP4s to define the movement of your AI character.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfbobpgUKOEquVVZyWN3qFCdB/ugc-video-generator-interface-for-ai-cha-1774609903370-29358a3a.png?_wi=2"}, + title: "Motion Transfer", description: "Upload reference MP4s to define the movement of your AI character.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfbobpgUKOEquVVZyWN3qFCdB/ugc-video-generator-interface-for-ai-cha-1774609903370-29358a3a.png?_wi=2" + }, { id: 3, - title: "Instant Generation", description: "Process your content in seconds with our high-performance GPU cluster.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfbobpgUKOEquVVZyWN3qFCdB/ugc-video-generator-interface-for-ai-cha-1774609903370-29358a3a.png?_wi=3"}, + title: "Instant Generation", description: "Process your content in seconds with our high-performance GPU cluster.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWfbobpgUKOEquVVZyWN3qFCdB/ugc-video-generator-interface-for-ai-cha-1774609903370-29358a3a.png?_wi=3" + }, ]} title="AI UGC Video Generator" description="Transform base images into realistic UGC videos using motion transfer technology." @@ -86,15 +78,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} metrics={[ - { - id: "views", icon: BarChart, - title: "Total Views", value: "2.4M+"}, - { - id: "subs", icon: Users, - title: "Subscribers", value: "150K"}, - { - id: "eng", icon: TrendingUp, - title: "Engagement Rate", value: "8.4%"}, + { id: "views", icon: BarChart, title: "Total Views", value: "2.4M+" }, + { id: "subs", icon: Users, title: "Subscribers", value: "150K" }, + { id: "eng", icon: TrendingUp, title: "Engagement Rate", value: "8.4%" }, ]} title="Analytics Hub" description="Master your niche with data-driven insights." @@ -102,34 +88,17 @@ export default function LandingPage() {
); -} +} \ No newline at end of file