Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-24 08:16:55 +00:00

View File

@@ -11,7 +11,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { Sparkles } from "lucide-react";
import { Sparkles, Video } from "lucide-react";
export default function LandingPage() {
return (
@@ -32,6 +32,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "Video Generation", id: "video-gen" },
{ name: "Features", id: "features" },
{ name: "Music", id: "music" },
{ name: "Pricing", id: "pricing" },
@@ -44,20 +45,41 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{ variant: "gradient-bars" }}
title="Unleash Creativity with NexusAI"
description="Generate videos, images, music, and voices in seconds. The most powerful AI creation suite in one interface."
tag="All-in-One Content Platform"
title="Revolutionize Your Workflow with AI Video"
description="From cinematic storyboards to finished 4K visuals, NexusAI empowers you to generate high-fidelity video in seconds."
tag="New: Advanced Video Generation"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/goal-oriented-entrepreneur-luxurious-corporate-office-plans-strategy_482257-128191.jpg", imageAlt: "AI Analytics Dashboard" },
{ imageSrc: "http://img.b2bpic.net/free-photo/3d-render-network-communications-with-flowing-connecting-lines-dots_1048-13580.jpg", imageAlt: "Digital Neural Brain" }
{ videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4", imageAlt: "AI Video Generation Demo" },
{ imageSrc: "http://img.b2bpic.net/free-photo/3d-render-network-communications-with-flowing-connecting-lines-dots_1048-13580.jpg", imageAlt: "Creative AI Engine" }
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Loved by 10,000+ creators"
tagIcon={Sparkles}
ratingText="Trusted by 15,000+ creators"
tagIcon={Video}
/>
</div>
<div id="video-gen" data-section="video-gen">
<FeatureCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "Text to Cinematic Video", description: "Transform simple text prompts into highly detailed 4K scenes with professional lighting and motion control.", phoneOne: { videoSrc: "https://www.w3schools.com/html/mov_bbb.mp4" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/videographer-operating-computer-editing-systems-equipment_482257-121749.jpg" }
},
{
title: "Advanced Camera Control", description: "Precisely control camera movements like pans, zooms, and tracking shots using intuitive AI sliders.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/video-editor-transforming-raw-clips-video-footage_482257-128175.jpg" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/man-switching-bulbs-using-voice-command-tablet_482257-8730.jpg" }
}
]}
showStepNumbers={true}
title="Pro-Grade Video Features"
description="Everything you need to create broadcast-quality content without the technical barrier."
/>
</div>
<div id="features" data-section="features">
<FeatureCardNine
animationType="slide-up"
@@ -166,7 +188,7 @@ export default function LandingPage() {
<FooterBaseCard
logoText="NexusAI"
columns={[
{ title: "Products", items: [{ label: "Video Gen", href: "#" }, { label: "Art Studio", href: "#" }, { label: "Music Lab", href: "#" }] },
{ title: "Products", items: [{ label: "Video Gen", href: "#video-gen" }, { label: "Art Studio", href: "#features" }, { label: "Music Lab", href: "#music" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]}