Update src/components/Layout.tsx

This commit is contained in:
2026-06-23 17:15:37 +00:00
parent 3030d3f2a5
commit cce64e0cc5

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": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Portfolio",
"href": "#portfolio"
"name": "Portfolio", "href": "#portfolio"
},
{
"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="Abiari Interiors"
logoImageSrc="http://img.b2bpic.net/free-vector/rc-logo-monogram-design_23-2151060583.jpg"
ctaButton={{
text: "Inquire",
href: "#contact",
}}
text: "Inquire", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +49,32 @@ export default function Layout() {
brand="Abiari Interiors"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Residential",
href: "#portfolio",
},
label: "Residential", href: "#portfolio"},
{
label: "Commercial",
href: "#portfolio",
},
label: "Commercial", href: "#portfolio"},
{
label: "Consultation",
href: "#contact",
},
label: "Consultation", href: "#contact"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Our Process",
href: "#about",
},
label: "Our Process", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
]}
copyright="© 2024 Abiari Interiors. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>