Update src/components/Layout.tsx

This commit is contained in:
2026-06-14 11:57:37 +00:00
parent b06ff48076
commit 2aa24aa019

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": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Projects",
"href": "#gallery"
"name": "Projects", "href": "#gallery"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Process",
"href": "#process"
"name": "Process", "href": "#process"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarInline
logo="Mahadev Glass"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
text: "Get Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,34 +48,23 @@ export default function Layout() {
brand="Mahadev Profile & Glass Work"
columns={[
{
title: "Location",
items: [
title: "Location", items: [
{
label: "Milan Garden Road, Siddipet, Telangana 502103",
href: "https://maps.app.goo.gl/d3aCctDqtDhwkvEf6",
},
label: "Milan Garden Road, Siddipet, Telangana 502103", href: "https://maps.app.goo.gl/d3aCctDqtDhwkvEf6"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "9848180381",
href: "tel:9848180381",
},
label: "9848180381", href: "tel:9848180381"},
{
label: "7842842864",
href: "tel:7842842864",
},
label: "7842842864", href: "tel:7842842864"},
],
},
{
title: "Working Hours",
items: [
title: "Working Hours", items: [
{
label: "Mon - Sun: 9:00 AM 9:00 PM",
href: "#",
},
label: "Mon - Sun: 9:00 AM 9:00 PM", href: "#"},
],
},
]}