Initial commit files
This commit is contained in:
70
data/navigation.ts
Normal file
70
data/navigation.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
export interface NavItem {
|
||||
label: string;
|
||||
href: string;
|
||||
children?: NavItem[];
|
||||
}
|
||||
|
||||
export const navigationData: NavItem[] = [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#",
|
||||
children: [
|
||||
{ label: "Home 1", href: "#" },
|
||||
{ label: "Home 2", href: "#" },
|
||||
{ label: "Home 3", href: "#" },
|
||||
{ label: "Home 4", href: "#" },
|
||||
{ label: "Home 5", href: "#" },
|
||||
{ label: "Home 6", href: "#" },
|
||||
{ label: "Home 7", href: "#" },
|
||||
{ label: "Home 8", href: "#" },
|
||||
{ label: "Home 9", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Pages",
|
||||
href: "#",
|
||||
children: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "About Us 2", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Gallery Grid", href: "#" },
|
||||
{ label: "Gallery Masonry", href: "#" },
|
||||
{ label: "Pricing plans", href: "#" },
|
||||
{ label: "FAQ", href: "#" },
|
||||
{ label: "Typography", href: "#" },
|
||||
{ label: "404", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#",
|
||||
children: [
|
||||
{ label: "Services Page", href: "#" },
|
||||
{ label: "Service Single", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Shop",
|
||||
href: "#",
|
||||
children: [
|
||||
{ label: "Products", href: "#" },
|
||||
{ label: "Single Product", href: "#" },
|
||||
{ label: "Shopping cart", href: "#" },
|
||||
{ label: "Checkout", href: "#" },
|
||||
{ label: "My account", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "#",
|
||||
children: [
|
||||
{ label: "Blog Classic", href: "#" },
|
||||
{ label: "Blog Grid", href: "#" },
|
||||
{ label: "Blog Single", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Contacts",
|
||||
href: "#",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user