Initial commit files

This commit is contained in:
2026-06-18 11:13:39 +05:30
parent 2e710e1fb7
commit d9cc83aa82
36 changed files with 1958 additions and 107 deletions

70
data/navigation.ts Normal file
View 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: "#",
},
];