diff --git a/src/app/page.tsx b/src/app/page.tsx index 04beba2..2b4fd43 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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 (
@@ -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() { @@ -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"}, ], }, ]}