Merge version_1_1782126683224 into main #1

Merged
bender merged 2 commits from version_1_1782126683224 into main 2026-06-22 11:12:31 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#home"
"name": "Home", "href": "#home"
},
{
"name": "Shop",
"href": "#shop"
"name": "Shop", "href": "#shop"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonial",
"href": "#testimonial"
"name": "Testimonial", "href": "#testimonial"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -42,46 +35,38 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="FragranceLab"
ctaButton={{
text: "Shop Now",
href: "#shop",
}}
navItems={navItems} />
logo="FragranceLab"
logoImageSrc="http://img.b2bpic.net/free-vector/ramadan-mubarak-greeting-card-set_53876-92890.jpg"
ctaButton={{
text: "Shop Now", href: "#shop"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="FragranceLab"
columns={[
{
items: [
brand="FragranceLab"
columns={[
{
label: "About Us",
href: "#about",
items: [
{
label: "About Us", href: "#about"},
{
label: "FAQ", href: "#faq"},
],
},
{
label: "FAQ",
href: "#faq",
items: [
{
label: "Shop All", href: "#shop"},
{
label: "Terms of Service", href: "#"},
],
},
],
},
{
items: [
{
label: "Shop All",
href: "#shop",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);