navbar component conneceted to backend

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-05 10:29:05 +05:00
parent 2b8e86e305
commit a6c1e4644a
3 changed files with 97 additions and 110 deletions

View File

@@ -38,3 +38,12 @@ export interface ProductDetail {
features: string[];
images: ProductImage[];
}
export interface NavbarItem {
id: number;
name: string;
url: string;
order: number;
open_in_new_tab: boolean;
children: NavbarItem[];
}