Files
hideyoshi-blog/src/ui/components/internal/header/desktop-header/static-desktop-header.tsx
Vitor Hideyoshi 3f9613d98b
Some checks failed
Build and Test / run-test (20.x) (push) Failing after 1m36s
WIP
2026-04-09 20:57:35 -03:00

12 lines
473 B
TypeScript

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', condition: true },
{ href: '/about', label: 'About', condition: true },
];
return <BaseDesktopHeader links={links} userButton={<BlankUserButton />} />;
};