Merge version_1_1781366298183 into main #1

Merged
bender merged 2 commits from version_1_1781366298183 into main 2026-06-13 15:59:23 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Exhibits",
"href": "#features"
"name": "Exhibits", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Reveal",
"href": "#reveal"
"name": "Reveal", "href": "#reveal"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,54 +35,41 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="CMJ"
ctaButton={{
text: "Plan Visit",
href: "#contact",
}}
navItems={navItems} />
logo="CMJ"
logoImageSrc="http://img.b2bpic.net/free-photo/still-life-small-decorative-objects-with-vivid-colors_23-2149732950.jpg"
ctaButton={{
text: "Plan Visit", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="The Children's Museum Jordan"
columns={[
{
items: [
brand="The Children's Museum Jordan"
columns={[
{
label: "Visit Us",
href: "#",
items: [
{
label: "Visit Us", href: "#"},
{
label: "Exhibits", href: "#"},
{
label: "Programs", href: "#"},
],
},
{
label: "Exhibits",
href: "#",
items: [
{
label: "Careers", href: "#"},
{
label: "Volunteer", href: "#"},
{
label: "Privacy Policy", href: "#"},
],
},
{
label: "Programs",
href: "#",
},
],
},
{
items: [
{
label: "Careers",
href: "#",
},
{
label: "Volunteer",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);