Update src/components/Layout.tsx

This commit is contained in:
2026-06-14 21:35:42 +00:00
parent 3490b20716
commit ea5a8a2a12

View File

@@ -7,86 +7,49 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
{ "name": "About", "href": "#about" },
{ "name": "Services", "href": "#services" },
{ "name": "Pricing", "href": "#pricing" },
{ "name": "Contact", "href": "#contact" },
{ "name": "Hero", "href": "#hero" },
{ "name": "Features", "href": "#features" },
{ "name": "Testimonials", "href": "#testimonials" }
];
return (
<StyleProvider buttonVariant="arrow" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Bios Spa"
logoImageSrc="https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=100&h=100&q=80"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Bios Spa"
logoImageSrc="http://img.b2bpic.net/free-photo/meditation-healthcare-lotus-flower-graphic-concept_53876-132563.jpg"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Bios Spa, Akure"
columns={[
{
items: [
brand="Bios Spa, Akure"
columns={[
{
label: "About Us",
href: "#about",
items: [
{ label: "About Us", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Contact", href: "#contact" },
],
},
{
label: "Services",
href: "#services",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
{
label: "Contact",
href: "#contact",
},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);