Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-03-27 09:21:03 +00:00

View File

@@ -10,6 +10,10 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import { Image, LayoutDashboard, MessageSquare } from "lucide-react";
export default function LandingPage() {
const sendMessage = () => {
console.log("Message sent");
};
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -28,38 +32,27 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "Features",
id: "features",
},
name: "Features", id: "features"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="AI Platform"
button={{
text: "Get Started",
href: "#contact",
}}
text: "Get Started", href: "#contact"}}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "sparkles-gradient",
}}
variant: "sparkles-gradient"}}
title="Build with AI"
description="Create smart apps and automate workflows using our advanced AI tools."
buttons={[
{
text: "Get Started",
href: "#features",
},
text: "Get Started", href: "#features"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWRSi5vXeCdtfVp3i6355Kxaxg/a-futuristic-ai-themed-hero-graphic-with-1774603231772-d0a725a3.png"
/>
@@ -73,19 +66,13 @@ export default function LandingPage() {
features={[
{
icon: MessageSquare,
title: "Chatbot",
description: "Create AI chatbots easily with our drag-and-drop conversational builder.",
},
title: "Chatbot", description: "Create AI chatbots easily with our drag-and-drop conversational builder."},
{
icon: Image,
title: "Image Generator",
description: "Generate high-quality images with AI using advanced diffusion models.",
},
title: "Image Generator", description: "Generate high-quality images with AI using advanced diffusion models."},
{
icon: LayoutDashboard,
title: "Automation",
description: "Automate routine tasks with sophisticated AI-powered workflow pipelines.",
},
title: "Automation", description: "Automate routine tasks with sophisticated AI-powered workflow pipelines."},
]}
title="Powerful AI Capabilities"
description="Transform your business with our comprehensive suite of intelligent solutions."
@@ -96,13 +83,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "sparkles-gradient",
}}
variant: "sparkles-gradient"}}
text="Ready to get started? Send us a message and our AI team will reach out."
buttons={[
{
text: "Send Message",
onClick: "sendMessage",
text: "Send Message", onClick: sendMessage,
},
]}
/>
@@ -114,17 +99,11 @@ export default function LandingPage() {
{
items: [
{
label: "Home",
href: "#hero",
},
label: "Home", href: "#hero"},
{
label: "Features",
href: "#features",
},
label: "Features", href: "#features"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
]}