Merge version_1_1783260308019 into main

Merge version_1_1783260308019 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-07-05 14:06:12 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Story",
"href": "#about"
"name": "Story", "href": "#about"
},
{
"name": "Products",
"href": "#products"
"name": "Products", "href": "#products"
},
{
"name": "Partners",
"href": "#b2b"
"name": "Partners", "href": "#b2b"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Benefits",
"href": "#benefits"
"name": "Benefits", "href": "#benefits"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,54 +35,42 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="SIRAB"
ctaButton={{
text: "Partner With Us",
href: "#contact",
}}
navItems={navItems} />
logo="SIRAB"
logoImageSrc="http://img.b2bpic.net/free-psd/plastic-surgery-youtube-cover_23-2150043080.jpg"
ctaButton={{
text: "Partner With Us", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="SIRAB"
columns={[
{
items: [
brand="SIRAB"
columns={[
{
label: "About Us",
href: "#about",
items: [
{
label: "About Us", href: "#about"},
{
label: "Products", href: "#products"},
{
label: "B2B Program", href: "#b2b"},
],
},
{
label: "Products",
href: "#products",
items: [
{
label: "Contact", href: "#contact"},
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
{
label: "B2B Program",
href: "#b2b",
},
],
},
{
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);