Merge version_1 into main #2
481
src/app/page.tsx
481
src/app/page.tsx
@@ -19,357 +19,156 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Features",
|
||||
id: "#features",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "#products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
]}
|
||||
brandName="AI Film Studio"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="AI Film Studio"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
title="Produce Cinema in One Minute"
|
||||
description="Harness the power of AI to transform your creative vision into cinematic reality. Experience lightning-fast film production with our studio suite."
|
||||
tag="AI Filmmaking Studio"
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Creating",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "c1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-cinema-movie-projector_23-2151016127.jpg?_wi=1",
|
||||
imageAlt: "Film set",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-person-listening-music-ultra-modern-headphones_23-2151072951.jpg?_wi=1",
|
||||
imageAlt: "AI scenes",
|
||||
},
|
||||
{
|
||||
id: "c3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/line-shaped-neon-lights-background_23-2147815496.jpg?_wi=1",
|
||||
imageAlt: "Motion graphics",
|
||||
},
|
||||
{
|
||||
id: "c4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-photo-camera_23-2149537027.jpg",
|
||||
imageAlt: "Camera rig",
|
||||
},
|
||||
{
|
||||
id: "c5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960118.jpg",
|
||||
imageAlt: "Digital landscape",
|
||||
},
|
||||
{
|
||||
id: "c6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-nuclear-power-plant_23-2150957660.jpg",
|
||||
imageAlt: "Film generation",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
title="Produce Cinema in One Minute"
|
||||
description="Harness the power of AI to transform your creative vision into cinematic reality. Experience lightning-fast film production with our studio suite."
|
||||
tag="AI Filmmaking Studio"
|
||||
buttons={[{ text: "Start Creating", href: "#contact" }]}
|
||||
carouselItems={[
|
||||
{ id: "c1", imageSrc: "http://img.b2bpic.net/free-photo/3d-cinema-movie-projector_23-2151016127.jpg", imageAlt: "Film set" },
|
||||
{ id: "c2", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-person-listening-music-ultra-modern-headphones_23-2151072951.jpg", imageAlt: "AI scenes" },
|
||||
{ id: "c3", imageSrc: "http://img.b2bpic.net/free-photo/line-shaped-neon-lights-background_23-2147815496.jpg", imageAlt: "Motion graphics" },
|
||||
{ id: "c4", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-photo-camera_23-2149537027.jpg", imageAlt: "Camera rig" },
|
||||
{ id: "c5", imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960118.jpg", imageAlt: "Digital landscape" },
|
||||
{ id: "c6", imageSrc: "http://img.b2bpic.net/free-photo/interior-nuclear-power-plant_23-2150957660.jpg", imageAlt: "Film generation" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Empowering Every Creator"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#features",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Empowering Every Creator"
|
||||
buttons={[{ text: "Learn More", href: "#features" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTen
|
||||
animationType="slide-up"
|
||||
textboxLayout="inline-image"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Rapid Script-to-Screen",
|
||||
description: "Generate full film scenes from simple text prompts in seconds.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-having-conversation-with-ai-virtual-assistant-producing-clips_482257-127292.jpg",
|
||||
imageAlt: "Script tool",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: Zap,
|
||||
text: "Instant generation",
|
||||
},
|
||||
{
|
||||
icon: Film,
|
||||
text: "High quality assets",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-cinema-movie-projector_23-2151016127.jpg?_wi=2",
|
||||
imageAlt: "ai video editor software",
|
||||
},
|
||||
{
|
||||
title: "Intelligent Editing",
|
||||
description: "Automated cinematic cutting and pacing tools for seamless sequences.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-soundproof-control-room-professional-recording-studio_482257-83540.jpg",
|
||||
imageAlt: "Editor tool",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: Scissors,
|
||||
text: "Smart cutting",
|
||||
},
|
||||
{
|
||||
icon: Layers,
|
||||
text: "Multi-track sync",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-person-listening-music-ultra-modern-headphones_23-2151072951.jpg?_wi=2",
|
||||
imageAlt: "ai video editor software",
|
||||
},
|
||||
{
|
||||
title: "Infinite Asset Library",
|
||||
description: "Access a massive database of procedurally generated textures and environments.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/computer-desk-with-ui-gpt-application-turning-text-prompt-into-photos_482257-118726.jpg",
|
||||
imageAlt: "Asset lib",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: Box,
|
||||
text: "Vast collection",
|
||||
},
|
||||
{
|
||||
icon: Download,
|
||||
text: "Quick render",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/line-shaped-neon-lights-background_23-2147815496.jpg?_wi=2",
|
||||
imageAlt: "ai video editor software",
|
||||
},
|
||||
]}
|
||||
title="AI-Driven Production Suite"
|
||||
description="Everything you need to direct, edit, and render high-quality content at scale."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTen
|
||||
animationType="slide-up"
|
||||
textboxLayout="inline-image"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Rapid Script-to-Screen", description: "Generate full film scenes from simple text prompts in seconds.", media: { imageSrc: "http://img.b2bpic.net/free-photo/person-having-conversation-with-ai-virtual-assistant-producing-clips_482257-127292.jpg", imageAlt: "Script tool" },
|
||||
items: [{ icon: Zap, text: "Instant generation" }, { icon: Film, text: "High quality assets" }],
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
title: "Intelligent Editing", description: "Automated cinematic cutting and pacing tools for seamless sequences.", media: { imageSrc: "http://img.b2bpic.net/free-photo/empty-soundproof-control-room-professional-recording-studio_482257-83540.jpg", imageAlt: "Editor tool" },
|
||||
items: [{ icon: Scissors, text: "Smart cutting" }, { icon: Layers, text: "Multi-track sync" }],
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
title: "Infinite Asset Library", description: "Access a massive database of procedurally generated textures and environments.", media: { imageSrc: "http://img.b2bpic.net/free-photo/computer-desk-with-ui-gpt-application-turning-text-prompt-into-photos_482257-118726.jpg", imageAlt: "Asset lib" },
|
||||
items: [{ icon: Box, text: "Vast collection" }, { icon: Download, text: "Quick render" }],
|
||||
reverse: false
|
||||
},
|
||||
]}
|
||||
title="AI-Driven Production Suite"
|
||||
description="Everything you need to direct, edit, and render high-quality content at scale."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Cinema Lens AI",
|
||||
price: "$99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/isolated-soap-oil-bubbles-watery-background_23-2148290163.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Virtual Stage Engine",
|
||||
price: "$199",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797617.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Narrative Engine",
|
||||
price: "$49",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/military-veteran-studies-rorschach-inkblot-therapy-session-with-counselor_482257-113964.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Pro Color Pro",
|
||||
price: "$149",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/video-specialist-edits-cinematic-visuals_482257-121324.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "FX Processor",
|
||||
price: "$299",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hackers-coding-computer-worm-malicious-software-together-discussing-server-breaking-two-young-men-stealing-personal-information-through-phishing-scam-hideout-room-night_482257-75013.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Motion Control",
|
||||
price: "$399",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-scene-with-high-tech-robot-used-construction-industry_23-2151329512.jpg",
|
||||
},
|
||||
]}
|
||||
title="Explore Our Solutions"
|
||||
description="Professional tools for every stage of your production pipeline."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Cinema Lens AI", price: "$99", imageSrc: "http://img.b2bpic.net/free-photo/isolated-soap-oil-bubbles-watery-background_23-2148290163.jpg" },
|
||||
{ id: "p2", name: "Virtual Stage Engine", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797617.jpg" },
|
||||
{ id: "p3", name: "Narrative Engine", price: "$49", imageSrc: "http://img.b2bpic.net/free-photo/military-veteran-studies-rorschach-inkblot-therapy-session-with-counselor_482257-113964.jpg" },
|
||||
{ id: "p4", name: "Pro Color Pro", price: "$149", imageSrc: "http://img.b2bpic.net/free-photo/video-specialist-edits-cinematic-visuals_482257-121324.jpg" },
|
||||
{ id: "p5", name: "FX Processor", price: "$299", imageSrc: "http://img.b2bpic.net/free-photo/hackers-coding-computer-worm-malicious-software-together-discussing-server-breaking-two-young-men-stealing-personal-information-through-phishing-scam-hideout-room-night_482257-75013.jpg" },
|
||||
{ id: "p6", name: "Motion Control", price: "$399", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-scene-with-high-tech-robot-used-construction-industry_23-2151329512.jpg" },
|
||||
]}
|
||||
title="Explore Our Solutions"
|
||||
description="Professional tools for every stage of your production pipeline."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Creative Director",
|
||||
company: "FilmFuture",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-shooting-with-projector_23-2149424951.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael Chen",
|
||||
role: "Head of Content",
|
||||
company: "InnovateLabs",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/non-binary-person-sitting-table-retro-clothes_23-2148757525.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Film Editor",
|
||||
company: "MotionCo",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David Kim",
|
||||
role: "Visual Artist",
|
||||
company: "NextGenVFX",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-portrait_23-2149005396.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Elena Petrova",
|
||||
role: "Director",
|
||||
company: "Visionaries",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-developing-photos-side-view_23-2149893829.jpg",
|
||||
},
|
||||
]}
|
||||
title="Voices of the Future"
|
||||
description="Filmmakers globally trust our AI tools to bring their visions to life."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah Johnson", role: "Creative Director", company: "FilmFuture", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-woman-shooting-with-projector_23-2149424951.jpg" },
|
||||
{ id: "t2", name: "Michael Chen", role: "Head of Content", company: "InnovateLabs", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/non-binary-person-sitting-table-retro-clothes_23-2148757525.jpg" },
|
||||
{ id: "t3", name: "Emily Rodriguez", role: "Film Editor", company: "MotionCo", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg" },
|
||||
{ id: "t4", name: "David Kim", role: "Visual Artist", company: "NextGenVFX", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-portrait_23-2149005396.jpg" },
|
||||
{ id: "t5", name: "Elena Petrova", role: "Director", company: "Visionaries", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-developing-photos-side-view_23-2149893829.jpg" },
|
||||
]}
|
||||
title="Voices of the Future"
|
||||
description="Filmmakers globally trust our AI tools to bring their visions to life."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "How long does production take?",
|
||||
content: "You can produce full cinematic scenes in under one minute using our AI tools.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Is the quality professional?",
|
||||
content: "Our AI models are trained on professional cinematic datasets to ensure studio-grade output.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Can I export my project?",
|
||||
content: "Yes, we support high-resolution 4K exports in multiple professional formats.",
|
||||
},
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about our AI film production suite."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "f1", title: "How long does production take?", content: "You can produce full cinematic scenes in under one minute using our AI tools." },
|
||||
{ id: "f2", title: "Is the quality professional?", content: "Our AI models are trained on professional cinematic datasets to ensure studio-grade output." },
|
||||
{ id: "f3", title: "Can I export my project?", content: "Yes, we support high-resolution 4K exports in multiple professional formats." },
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about our AI film production suite."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Get Started"
|
||||
title="Start Creating Today"
|
||||
description="Sign up and begin producing your next cinematic masterpiece with AI."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/vintage-projector-frankfurt-cinema-museum-germany_1268-20921.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get Started"
|
||||
title="Start Creating Today"
|
||||
description="Sign up and begin producing your next cinematic masterpiece with AI."
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/vintage-projector-frankfurt-cinema-museum-germany_1268-20921.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Features",
|
||||
href: "#features",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Support",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="AI Film Studio"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="AI Film Studio"
|
||||
columns={[
|
||||
{ items: [{ label: "About", href: "#about" }, { label: "Features", href: "#features" }] },
|
||||
{ items: [{ label: "Pricing", href: "#products" }, { label: "Support", href: "#" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user