diff --git a/src/app/page.tsx b/src/app/page.tsx index e69de29..1d5cb77 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -0,0 +1,53 @@ +"use client"; + +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSignup from "@/components/sections/hero/HeroSignup"; +import { Sparkles } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "FAQ", id: "faq" }, +]; + +const button = { + text: "Get Started", onClick: () => console.log("Get Started clicked"), +}; + +export default function Home() { + return ( + + + +
+ console.log("Email submitted:", email)} + /> +
+
+ ); +}