Merge version_1_1781614419800 into main

Merge version_1_1781614419800 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-16 12:54:40 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Fabrics",
"href": "#products"
"name": "Fabrics", "href": "#products"
},
{
"name": "Wholesale",
"href": "#pricing"
"name": "Wholesale", "href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Multan Fabrics"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=91uvow"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
text: "Shop Now", href: "#products"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +49,32 @@ export default function Layout() {
brand="Multan Fabrics Factory Shop #2"
columns={[
{
title: "Categories",
items: [
title: "Categories", items: [
{
label: "Men's Fabrics",
href: "#products",
},
label: "Men's Fabrics", href: "#products"},
{
label: "Women's Fabrics",
href: "#products",
},
label: "Women's Fabrics", href: "#products"},
{
label: "Wholesale",
href: "#pricing",
},
label: "Wholesale", href: "#pricing"},
],
},
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{
label: "About Us",
href: "#",
},
label: "About Us", href: "#"},
{
label: "Latest Arrivals",
href: "#",
},
label: "Latest Arrivals", href: "#"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
]}
copyright="© 2024 Multan Fabrics Factory Shop #2. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>