Merge version_1_1782248172723 into main

Merge version_1_1782248172723 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-23 20:57:00 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "Marquee",
"href": "#marquee"
"name": "Marquee", "href": "#marquee"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Gentleman's Barber"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=8o8l8e"
ctaButton={{
text: "Visit Us",
href: "#contact",
}}
text: "Visit Us", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,34 +48,23 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Location",
items: [
title: "Location", items: [
{
label: "320 Main St, Huntington, NY",
href: "#",
},
label: "320 Main St, Huntington, NY", href: "#"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "(631) 549-1100",
href: "tel:6315491100",
},
label: "(631) 549-1100", href: "tel:6315491100"},
],
},
{
title: "Links",
items: [
title: "Links", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Services",
href: "#services",
},
label: "Services", href: "#services"},
],
},
]}