Files
tenext-next/data/navigation.ts
2026-06-18 16:32:31 +05:30

71 lines
1.6 KiB
TypeScript

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: "/about" },
{ 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: "/services" },
{ 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: "/contacts",
},
];