diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index 9e706eb4..b9efc7fe 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -28,6 +28,14 @@ export default function Layout({ children }: LayoutProps) { { name: "Contact", href: "/contact" }, ]; + const userNavigation = [ + { name: "Dashboard", href: "/dashboard" }, + { name: "Profile", href: "/profile" }, + { name: "Home", href: "/" }, + { name: "About", href: "/about" }, + { name: "Contact", href: "/contact" }, + ]; + const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }); };