Merge version_1_1781431852122 into main #1

Merged
bender merged 2 commits from version_1_1781431852122 into main 2026-06-14 10:13:54 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Magazine",
"href": "#magazine"
"name": "Magazine", "href": "#magazine"
},
{
"name": "Radio",
"href": "#radio"
"name": "Radio", "href": "#radio"
},
{
"name": "Shop",
"href": "#shop"
"name": "Shop", "href": "#shop"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Offices",
"href": "#offices"
"name": "Offices", "href": "#offices"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Newsletter",
"href": "#newsletter"
"name": "Newsletter", "href": "#newsletter"
}
];
@@ -42,67 +35,49 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Monocle"
ctaButton={{
text: "Subscribe",
href: "#",
}}
navItems={navItems} />
logo="Monocle"
logoImageSrc="http://img.b2bpic.net/free-vector/abstract-arrows-logo_23-2147512604.jpg"
ctaButton={{
text: "Subscribe", href: "#"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Monocle"
columns={[
{
title: "Discover",
items: [
brand="Monocle"
columns={[
{
label: "Magazine",
href: "#",
title: "Discover", items: [
{
label: "Magazine", href: "#"},
{
label: "Radio", href: "#"},
{
label: "Shop", href: "#"},
],
},
{
label: "Radio",
href: "#",
title: "Topics", items: [
{
label: "Affairs", href: "#"},
{
label: "Business", href: "#"},
{
label: "Culture", href: "#"},
],
},
]}
copyright="© 2026 Monocle"
links={[
{
label: "Shop",
href: "#",
},
],
},
{
title: "Topics",
items: [
label: "Privacy Policy", href: "#"},
{
label: "Affairs",
href: "#",
},
{
label: "Business",
href: "#",
},
{
label: "Culture",
href: "#",
},
],
},
]}
copyright="© 2026 Monocle"
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);