Merge version_1_1782141729202 into main #1

Merged
bender merged 2 commits from version_1_1782141729202 into main 2026-06-22 15:23:19 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Experience",
"href": "#hero"
"name": "Experience", "href": "#hero"
},
{
"name": "Collection",
"href": "#gallery"
"name": "Collection", "href": "#gallery"
},
{
"name": "Curators",
"href": "#team"
"name": "Curators", "href": "#team"
},
{
"name": "Connect",
"href": "#contact"
"name": "Connect", "href": "#contact"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,71 +35,50 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="GalleryX"
ctaButton={{
text: "Enter Gallery",
href: "#hero",
}}
navItems={navItems} />
logo="GalleryX"
logoImageSrc="http://img.b2bpic.net/free-vector/ornamental-background-design_1375-95.jpg"
ctaButton={{
text: "Enter Gallery", href: "#hero"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="GalleryX"
columns={[
{
title: "Navigation",
items: [
brand="GalleryX"
columns={[
{
label: "Experience",
href: "#hero",
title: "Navigation", items: [
{
label: "Experience", href: "#hero"},
{
label: "Collection", href: "#gallery"},
{
label: "Vision", href: "#about"},
],
},
{
label: "Collection",
href: "#gallery",
title: "Legal", items: [
{
label: "Terms of Use", href: "#"},
{
label: "Privacy Policy", href: "#"},
{
label: "Cookie Policy", href: "#"},
],
},
]}
copyright="© 2024 GalleryX Digital Studios. All rights reserved."
links={[
{
label: "Vision",
href: "#about",
},
],
},
{
title: "Legal",
items: [
label: "Twitter", href: "#"},
{
label: "Terms of Use",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Privacy Policy",
href: "#",
},
{
label: "Cookie Policy",
href: "#",
},
],
},
]}
copyright="© 2024 GalleryX Digital Studios. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "Instagram",
href: "#",
},
{
label: "LinkedIn",
href: "#",
},
]}
/>
label: "LinkedIn", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);