Merge version_1_1781534498343 into main #1

Merged
bender merged 2 commits from version_1_1781534498343 into main 2026-06-15 14:42:50 +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": "Reviews",
"href": "#testimonials"
"name": "Reviews", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,66 +35,50 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Opulence"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Opulence"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ltgo84"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Opulence Nails and Aesthetics"
columns={[
{
items: [
brand="Opulence Nails and Aesthetics"
columns={[
{
label: "103 Kellner St, Westdene",
href: "#",
items: [
{
label: "103 Kellner St, Westdene", href: "#"},
{
label: "Bloemfontein, 9301", href: "#"},
{
label: "051 004 0344", href: "tel:0510040344"},
],
},
{
label: "Bloemfontein, 9301",
href: "#",
items: [
{
label: "About Us", href: "#about"},
{
label: "Our Services", href: "#services"},
{
label: "Reviews", href: "#testimonials"},
],
},
{
label: "051 004 0344",
href: "tel:0510040344",
items: [
{
label: "Instagram", href: "https://instagram.com"},
{
label: "Privacy Policy", href: "#"},
],
},
],
},
{
items: [
{
label: "About Us",
href: "#about",
},
{
label: "Our Services",
href: "#services",
},
{
label: "Reviews",
href: "#testimonials",
},
],
},
{
items: [
{
label: "Instagram",
href: "https://instagram.com",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);