Merge version_1_1781389424219 into main #1

Merged
bender merged 2 commits from version_1_1781389424219 into main 2026-06-13 22:24:51 +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": "Products",
"href": "#products"
"name": "Products", "href": "#products"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Reviews",
"href": "#reviews"
"name": "Reviews", "href": "#reviews"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Instagram",
"href": "#instagram"
"name": "Instagram", "href": "#instagram"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="MK Chocolate"
logoImageSrc="http://img.b2bpic.net/free-vector/coloured-vintage-labels-collection_1009-323.jpg"
ctaButton={{
text: "WhatsApp Us",
href: "https://wa.me/923322550111",
}}
text: "WhatsApp Us", href: "https://wa.me/923322550111"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,37 +48,23 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "MK Chocolate",
items: [
title: "MK Chocolate", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Our Products",
href: "#products",
},
label: "Our Products", href: "#products"},
{
label: "Customer Reviews",
href: "#reviews",
},
label: "Customer Reviews", href: "#reviews"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Karachi, Pakistan",
href: "#",
},
label: "Karachi, Pakistan", href: "#"},
{
label: "+92 332 2550111",
href: "https://wa.me/923322550111",
},
label: "+92 332 2550111", href: "https://wa.me/923322550111"},
{
label: "orders@mkchocolate.pk",
href: "mailto:orders@mkchocolate.pk",
},
label: "orders@mkchocolate.pk", href: "mailto:orders@mkchocolate.pk"},
],
},
]}