Added create site page

This commit is contained in:
2026-04-05 19:03:15 +02:00
parent a6a29461bc
commit a741d769bc
14 changed files with 870 additions and 19 deletions
+4 -1
View File
@@ -2,6 +2,7 @@ import { Logo } from '@/components/logo';
import { NavMenu } from '@/components/nav-menu';
import { NavigationSheet } from '@/components/navigation-sheet';
import { Avatar, AvatarFallback, AvatarImage } from './ui/avatar';
import { Link } from 'react-router';
interface NavbarProps {
userName?: string;
@@ -12,7 +13,9 @@ const Navbar = ({ userName, profilePictureUrl }: NavbarProps) => {
return (
<nav className="inset-x-4 my-6 mx-auto h-16 max-w-(--breakpoint-xl) rounded-full border bg-background">
<div className="mx-auto flex h-full items-center justify-between px-4">
<Logo />
<Link to="/">
<Logo />
</Link>
{/* Desktop Menu */}
<NavMenu className="hidden md:block" />