Update src/components/Layout.tsx

This commit is contained in:
2026-06-13 19:30:48 +00:00
parent 0be22ee64a
commit f849949cce

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Process",
"href": "#process"
"name": "Process", "href": "#process"
},
{
"name": "Reviews",
"href": "#reviews"
"name": "Reviews", "href": "#reviews"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarDropdown
logo="Roof Dynamics"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
text: "Get Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,37 +48,23 @@ export default function Layout() {
brand="Roof Dynamics"
columns={[
{
heading: "Company",
links: [
items: [
{
label: "Services",
href: "#services",
},
label: "Services", href: "#services"},
{
label: "Why Us",
href: "#why-us",
},
label: "Why Us", href: "#why-us"},
{
label: "Reviews",
href: "#reviews",
},
label: "Reviews", href: "#reviews"},
],
},
{
heading: "Support",
links: [
items: [
{
label: "Tampa Roofing Info",
href: "#",
},
label: "Tampa Roofing Info", href: "#"},
{
label: "Insurance Claims",
href: "#",
},
label: "Insurance Claims", href: "#"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}