Merge version_1_1781624629495 into main #1

Merged
bender merged 2 commits from version_1_1781624629495 into main 2026-06-16 15:44:51 +00:00

View File

@@ -7,81 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Reviews",
"href": "#testimonials"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ name: "About", href: "#about" },
{ name: "Services", href: "#services" },
{ name: "Reviews", href: "#testimonials" },
{ name: "Pricing", href: "#pricing" },
{ name: "Hero", href: "#hero" },
{ name: "Metrics", href: "#metrics" },
{ name: "Faq", href: "#faq" }
];
return (
<StyleProvider buttonVariant="shift" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Takla"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Takla"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=5bsjb4"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Takla Car Detailing"
columns={[
{
items: [
brand="Takla Car Detailing"
columns={[
{
label: "Services",
href: "#services",
items: [
{ label: "Services", href: "#services" },
{ label: "About", href: "#about" },
],
},
{
label: "About",
href: "#about",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);