Merge version_1_1782213051871 into main #1

Merged
bender merged 1 commits from version_1_1782213051871 into main 2026-06-23 11:11:43 +00:00

View File

@@ -7,71 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "How It Works",
"href": "#how-it-works"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Why Moiz",
"href": "#why-moiz"
},
{
"name": "Niches",
"href": "#niches"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{
"name": "Home", "href": "#hero"
},
{
"name": "How It Works", "href": "#how-it-works"
},
{
"name": "Contact", "href": "#contact"
},
{
"name": "Why Moiz", "href": "#why-moiz"
},
{
"name": "Niches", "href": "#niches"
},
{
"name": "Metrics", "href": "#metrics"
}
];
return (
<StyleProvider buttonVariant="arrow" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="MoizMediaco"
ctaButton={{
text: "Work With Us",
href: "#contact",
}}
navItems={navItems} />
logo="MoizMediaco"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=wq208t"
ctaButton={{
text: "Work With Us", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Company",
items: [
columns={[
{
label: "Home",
href: "#hero",
title: "Company", items: [
{
label: "Home", href: "#hero"},
{
label: "How It Works", href: "#how-it-works"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "How It Works",
href: "#how-it-works",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
leftText="MoizMediaco"
rightText="© 2025 MoizMediaco. All rights reserved."
/>
]}
leftText="MoizMediaco"
rightText="© 2025 MoizMediaco. All rights reserved."
/>
</SectionErrorBoundary>
</StyleProvider>
);