diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 0662f39..730df41 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -27,33 +27,21 @@ export default function LandingPage() { @@ -64,17 +52,11 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "videos-created", - icon: Video, - title: "Videos Created", - value: "127", - }, + id: "videos-created", icon: Video, + title: "Videos Created", value: "127"}, { - id: "credits-remaining", - icon: Wallet, - title: "Credits Remaining", - value: "73%", - }, + id: "credits-remaining", icon: Wallet, + title: "Credits Remaining", value: "73%"}, ]} title="Your Creative Hub" description="Monitor your video generation progress and manage your account resources efficiently." @@ -88,72 +70,40 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Mysterious Forest", - description: "Scary Stories (30s)", - icon: Cloud, + title: "Mysterious Forest", description: "Scary Stories (30s)", icon: Cloud, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/digital-painting-horrible-creatures-with-genetic-mutations-ruined-laboratory_456031-97.jpg", - imageAlt: "Mysterious Forest Video", - }, + imageSrc: "http://img.b2bpic.net/free-photo/digital-painting-horrible-creatures-with-genetic-mutations-ruined-laboratory_456031-97.jpg", imageAlt: "Mysterious Forest Video"}, { - imageSrc: "http://img.b2bpic.net/free-photo/dystopian-landscape-with-futuristic-motorcycle-monster_23-2149369694.jpg", - imageAlt: "Historical Event", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-holographic-cube_23-2150979697.jpg?_wi=2", - imageAlt: "ai generated video thumbnail scary", + imageSrc: "http://img.b2bpic.net/free-photo/dystopian-landscape-with-futuristic-motorcycle-monster_23-2149369694.jpg", imageAlt: "Historical Event"}, + ] }, { - title: "Ancient Rome", - description: "History (60s)", - icon: FileText, + title: "Ancient Rome", description: "History (60s)", icon: FileText, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/school-elements-assortment-view_23-2149001165.jpg", - imageAlt: "Historical Event", - }, + imageSrc: "http://img.b2bpic.net/free-photo/school-elements-assortment-view_23-2149001165.jpg", imageAlt: "Historical Event"}, { - imageSrc: "http://img.b2bpic.net/free-photo/positivity-mindset-thinking-wellness-concept_53876-167091.jpg", - imageAlt: "Motivational Speech", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-futuristic-technologies_23-2151941514.jpg?_wi=3", - imageAlt: "ai generated video thumbnail scary", + imageSrc: "http://img.b2bpic.net/free-photo/positivity-mindset-thinking-wellness-concept_53876-167091.jpg", imageAlt: "Motivational Speech"}, + ] }, { - title: "Rise & Shine", - description: "Motivation (3min)", - icon: Sparkles, + title: "Rise & Shine", description: "Motivation (3min)", icon: Sparkles, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/home-decor-design-renovation-style_53876-125047.jpg", - imageAlt: "Motivational Speech", - }, + imageSrc: "http://img.b2bpic.net/free-photo/home-decor-design-renovation-style_53876-125047.jpg", imageAlt: "Motivational Speech"}, { - imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-photos-light-movie-projector_23-2149377352.jpg", - imageAlt: "Funny Character", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/digital-art-ai-technology-background_23-2151719641.jpg?_wi=2", - imageAlt: "ai generated video thumbnail scary", + imageSrc: "http://img.b2bpic.net/free-photo/couple-taking-photos-light-movie-projector_23-2149377352.jpg", imageAlt: "Funny Character"}, + ] }, { - title: "The Talking Dog", - description: "Funny Characters (30s)", - icon: Heart, + title: "The Talking Dog", description: "Funny Characters (30s)", icon: Heart, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/man-showcasing-their-home_23-2151624940.jpg", - imageAlt: "Funny Character", - }, + imageSrc: "http://img.b2bpic.net/free-photo/man-showcasing-their-home_23-2151624940.jpg", imageAlt: "Funny Character"}, { - imageSrc: "http://img.b2bpic.net/free-photo/side-view-frankenstein-wearing-vr-glasses_23-2149636453.jpg", - imageAlt: "Mysterious Forest Video", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/mature-developer-coding-cloud-computing-with-ai-chatbot-pc_482257-119990.jpg?_wi=2", - imageAlt: "ai generated video thumbnail scary", + imageSrc: "http://img.b2bpic.net/free-photo/side-view-frankenstein-wearing-vr-glasses_23-2149636453.jpg", imageAlt: "Mysterious Forest Video"}, + ] }, ]} title="Recent Video Generations" @@ -168,54 +118,33 @@ export default function LandingPage() { logoText="facely" columns={[ { - title: "Product", - items: [ + title: "Product", items: [ { - label: "Features", - href: "/#features", - }, + label: "Features", href: "/#features"}, { - label: "Pricing", - href: "/pricing", - }, + label: "Pricing", href: "/pricing"}, { - label: "Dashboard", - href: "/dashboard", - }, + label: "Dashboard", href: "/dashboard"}, { - label: "Create Video", - href: "/create", - }, + label: "Create Video", href: "/create"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, { - label: "Contact", - href: "#", - }, + label: "Contact", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} diff --git a/src/app/page.tsx b/src/app/page.tsx index 22bc764..fdeadf6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,33 +30,21 @@ export default function LandingPage() { @@ -66,38 +54,24 @@ export default function LandingPage() { description="Transform your ideas into captivating videos with our intuitive AI platform. From scripts to final cuts, Facely simplifies content creation for everyone." buttons={[ { - text: "Get Started", - href: "/signup", - }, + text: "Get Started", href: "/signup"}, { - text: "View Features", - href: "/#features", - }, + text: "View Features", href: "/#features"}, ]} - imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-futuristic-technologies_23-2151941514.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-futuristic-technologies_23-2151941514.jpg" imageAlt="Facely AI Dashboard Interface" showBlur={true} avatars={[ { - src: "http://img.b2bpic.net/free-photo/happy-businessman-drinking-coffee-with-laptop-desk_23-2147955289.jpg", - alt: "Happy businessman drinking coffee", - }, + src: "http://img.b2bpic.net/free-photo/happy-businessman-drinking-coffee-with-laptop-desk_23-2147955289.jpg", alt: "Happy businessman drinking coffee"}, { - src: "http://img.b2bpic.net/free-photo/smiling-mid-adult-businessman-using-computer-while-working-office-desk_637285-6746.jpg", - alt: "Smiling businessman at desk", - }, + src: "http://img.b2bpic.net/free-photo/smiling-mid-adult-businessman-using-computer-while-working-office-desk_637285-6746.jpg", alt: "Smiling businessman at desk"}, { - src: "http://img.b2bpic.net/free-photo/laughing-businessman-talking-phone-while-working-his-office-businessperson-professional-environment_482257-32743.jpg", - alt: "Businessman talking on phone", - }, + src: "http://img.b2bpic.net/free-photo/laughing-businessman-talking-phone-while-working-his-office-businessperson-professional-environment_482257-32743.jpg", alt: "Businessman talking on phone"}, { - src: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg", - alt: "Businessman sitting on sofa", - }, + src: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg", alt: "Businessman sitting on sofa"}, { - src: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2533.jpg", - alt: "Black businessman happy expression", - }, + src: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2533.jpg", alt: "Black businessman happy expression"}, ]} avatarText="Join 10,000+ happy creators" /> @@ -110,72 +84,40 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "AI Script-to-Video", - description: "Automatically convert your text into engaging video scripts and then into full videos.", - icon: Lightbulb, + title: "AI Script-to-Video", description: "Automatically convert your text into engaging video scripts and then into full videos.", icon: Lightbulb, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/digital-art-ai-technology-background_23-2151719641.jpg?_wi=1", - imageAlt: "AI Brain", - }, + imageSrc: "http://img.b2bpic.net/free-photo/digital-art-ai-technology-background_23-2151719641.jpg", imageAlt: "AI Brain"}, { - imageSrc: "http://img.b2bpic.net/free-photo/mature-developer-coding-cloud-computing-with-ai-chatbot-pc_482257-119990.jpg?_wi=1", - imageAlt: "Video Timeline", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-holographic-cube_23-2150979697.jpg?_wi=1", - imageAlt: "ai neural network purple", + imageSrc: "http://img.b2bpic.net/free-photo/mature-developer-coding-cloud-computing-with-ai-chatbot-pc_482257-119990.jpg", imageAlt: "Video Timeline"}, + ] }, { - title: "Customizable Voice Styles", - description: "Choose from a diverse range of AI voice styles, languages, and emotional tones to match your content.", - icon: Headphones, + title: "Customizable Voice Styles", description: "Choose from a diverse range of AI voice styles, languages, and emotional tones to match your content.", icon: Headphones, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/woman-watching-business-conference-computer-screen-looking-statistics_482257-125563.jpg", - imageAlt: "Video Timeline", - }, + imageSrc: "http://img.b2bpic.net/free-photo/woman-watching-business-conference-computer-screen-looking-statistics_482257-125563.jpg", imageAlt: "Video Timeline"}, { - imageSrc: "http://img.b2bpic.net/free-photo/3d-round-movie-reel_23-2151016099.jpg", - imageAlt: "Video Export", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-futuristic-technologies_23-2151941514.jpg?_wi=2", - imageAlt: "ai neural network purple", + imageSrc: "http://img.b2bpic.net/free-photo/3d-round-movie-reel_23-2151016099.jpg", imageAlt: "Video Export"}, + ] }, { - title: "Scene & Asset Generation", - description: "AI generates relevant visuals, background music, and sound effects for each scene based on your script.", - icon: Palette, + title: "Scene & Asset Generation", description: "AI generates relevant visuals, background music, and sound effects for each scene based on your script.", icon: Palette, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/green-truck-delivering-christmas-presents_23-2149547645.jpg", - imageAlt: "Video Export", - }, + imageSrc: "http://img.b2bpic.net/free-photo/green-truck-delivering-christmas-presents_23-2149547645.jpg", imageAlt: "Video Export"}, { - imageSrc: "http://img.b2bpic.net/free-photo/artificial-intelligence-enabling-computers-replicate-human-brain-functioning-machine-learning-algorithms-used-computational-operations-based-data-pattern-recognition-3d-render-animation_482257-66074.jpg", - imageAlt: "AI Brain", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-using-laptop-restaurant_23-2147956341.jpg?_wi=1", - imageAlt: "ai neural network purple", + imageSrc: "http://img.b2bpic.net/free-photo/artificial-intelligence-enabling-computers-replicate-human-brain-functioning-machine-learning-algorithms-used-computational-operations-based-data-pattern-recognition-3d-render-animation_482257-66074.jpg", imageAlt: "AI Brain"}, + ] }, { - title: "Multi-Platform Export", - description: "Easily export your finished videos in various formats optimized for social media, websites, and presentations.", - icon: Download, + title: "Multi-Platform Export", description: "Easily export your finished videos in various formats optimized for social media, websites, and presentations.", icon: Download, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/black-man-photo-editor-well-organized-workspace-editing-images_482257-121382.jpg", - imageAlt: "Video Timeline", - }, + imageSrc: "http://img.b2bpic.net/free-photo/black-man-photo-editor-well-organized-workspace-editing-images_482257-121382.jpg", imageAlt: "Video Timeline"}, { - imageSrc: "http://img.b2bpic.net/free-photo/depiction-human-brain-intellect_23-2150936715.jpg", - imageAlt: "AI Brain", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/computer-scientist-server-farm-ensuring-compliance-with-industry-standards_482257-123806.jpg?_wi=1", - imageAlt: "ai neural network purple", + imageSrc: "http://img.b2bpic.net/free-photo/depiction-human-brain-intellect_23-2150936715.jpg", imageAlt: "AI Brain"}, + ] }, ]} title="Powerful Features Designed for Creativity" @@ -185,66 +127,34 @@ export default function LandingPage() {
- +