styling ui header menu

This commit is contained in:
2026-02-05 00:04:28 +07:00
parent 00ba842b80
commit c98ccd1fa1
8 changed files with 99 additions and 135 deletions

7
types/header-menu.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface HeaderMenu {
id: string;
title: string;
url: string;
type?: 'internal' | 'external';
children?: HeaderMenu[];
}