Merge version_1_1781594800060 into main #1

Merged
bender merged 2 commits from version_1_1781594800060 into main 2026-06-16 07:27:49 +00:00

View File

@@ -9,32 +9,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": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Packages",
"href": "#packages"
"name": "Packages", "href": "#packages"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,31 +36,26 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AutoCare"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="AutoCare"
logoImageSrc="http://img.b2bpic.net/free-photo/taxi-car-with-pin-pointer-mark-location-smartphone-online-transportation-service-concept-web-banner-cartoon-icon-symbol-background-3d-illustration_56104-1999.jpg"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="AutoCare"
copyright="© 2024 AutoCare Service. All rights reserved."
socialLinks={[
{
icon: Facebook,
href: "#",
},
{
icon: Instagram,
href: "#",
},
]}
/>
brand="AutoCare"
copyright="© 2024 AutoCare Service. All rights reserved."
socialLinks={[
{
icon: "Facebook", href: "#"},
{
icon: "Instagram", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);