import { Link, useLocation } from "react-router-dom";
import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import SupabaseStatus from "./SupabaseStatus";
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" },
];
const scrollToTop = () => {
window.scrollTo({ top: 0, behavior: "smooth" });
};
return (
{/* Logo */}
AeThex
{/* Navigation */}
{/* CTA */}
{children}
{/* Supabase Configuration Status */}
);
}