Initial Commit
This commit is contained in:
@@ -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 />} />;
|
||||
};
|
||||
Reference in New Issue
Block a user