Merge version_1_1781624181117 into main #2

Merged
bender merged 2 commits from version_1_1781624181117 into main 2026-06-16 15:37:36 +00:00

View File

@@ -8,32 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
"name": "Home", "href": "/"
},
{
"name": "About Us",
"href": "/about"
"name": "About Us", "href": "/about"
},
{
"name": "Products",
"href": "/products"
"name": "Products", "href": "/products"
},
{
"name": "Industries",
"href": "/industries"
"name": "Industries", "href": "/industries"
},
{
"name": "Projects",
"href": "/projects"
"name": "Projects", "href": "/projects"
},
{
"name": "Contact Us",
"href": "/contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Contact Us", "href": "/contact"
}
];
@@ -42,66 +32,49 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Ghani Elevators"
ctaButton={{
text: "Get in Touch",
href: "/contact",
}}
navItems={navItems} />
logo="Ghani Elevators"
logoImageSrc="http://img.b2bpic.net/free-vector/monogram-logo-design-template_23-2151214057.jpg"
ctaButton={{
text: "Get in Touch", href: "/contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Ghani Elevators & Engineering Services: Providing industrial and commercial equipment and product-based solutions, domestically and across Pakistan."
columns={[
{
items: [
brand="Ghani Elevators & Engineering Services: Providing industrial and commercial equipment and product-based solutions, domestically and across Pakistan."
columns={[
{
label: "Home",
href: "/",
items: [
{
label: "Home", href: "/"},
{
label: "About Us", href: "/about"},
{
label: "Industries", href: "/industries"},
{
label: "Products", href: "/products"},
{
label: "Projects", href: "/projects"},
{
label: "Contact Us", href: "/contact"},
],
},
{
label: "About Us",
href: "/about",
items: [
{
label: "Karachi, Pakistan"},
{
label: "0314 2764699"},
{
label: "0312 9240343"},
{
label: "info@ghanielevators.com"},
],
},
{
label: "Industries",
href: "/industries",
},
{
label: "Products",
href: "/products",
},
{
label: "Projects",
href: "/projects",
},
{
label: "Contact Us",
href: "/contact",
},
],
},
{
items: [
{
label: "Karachi, Pakistan",
},
{
label: "0314 2764699",
},
{
label: "0312 9240343",
},
{
label: "info@ghanielevators.com",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);