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 */}
AeThex Logo AeThex
{/* Navigation */} {/* CTA */}
{children}
); }