diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx new file mode 100644 index 00000000..dad68eda --- /dev/null +++ b/client/components/Layout.tsx @@ -0,0 +1,131 @@ +import { Link, useLocation } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { cn } from "@/lib/utils"; + +interface LayoutProps { + children: React.ReactNode; +} + +export default function Layout({ children }: LayoutProps) { + const location = useLocation(); + + const navigation = [ + { name: "Home", href: "/" }, + { name: "Get Started", href: "/onboarding" }, + { name: "About", href: "/about" }, + { name: "Contact", href: "/contact" }, + ]; + + return ( +
+
+
+ {/* Logo */} + +
+
+ Ae +
+ AeThex +
+ + + {/* Navigation */} + + + {/* CTA */} +
+ + +
+
+
+ +
{children}
+ + +
+ ); +}