Initial Commit

This commit is contained in:
2026-03-31 21:09:10 -03:00
commit 16cda78d10
84 changed files with 19428 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { BaseDesktopHeader } from '@/ui/components/internal/header/desktop-header/base-desktop-header';
import { BlankUserButton } from '@/ui/components/internal/user-profile/user-profile-button';
export const StaticDesktopHeader = () => {
const links = [
{ href: '/home', label: 'Home' },
{ href: '/about', label: 'About' },
];
return <BaseDesktopHeader links={links} userButton={<BlankUserButton />} />;
};