Contact Page

This commit is contained in:
Ahmed Al-Taiar
2024-08-21 01:24:24 -04:00
parent c7d87e36f2
commit 593567a197
25 changed files with 848 additions and 42 deletions

View File

@@ -19,11 +19,10 @@ type NavbarLayoutProps = {
const NavbarLayout = ({ children }: NavbarLayoutProps) => {
const { isAuthenticated, logOut } = useAuth()
// TODO: populate with buttons to other page
const navbarRoutes: NavbarRoute[] = [
{
name: 'Test',
path: routes.home(),
name: 'Contact',
path: routes.contact(),
},
]
@@ -32,6 +31,10 @@ const NavbarLayout = ({ children }: NavbarLayoutProps) => {
name: 'Socials',
path: routes.socials(),
},
{
name: 'Portrait',
path: routes.portrait(),
},
]
const navbarButtons = () =>