Merge version_1_1781400385692 into main #1

Merged
bender merged 2 commits from version_1_1781400385692 into main 2026-06-14 01:27:34 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Partner Venues",
"href": "#partner-venues"
"name": "Partner Venues", "href": "#partner-venues"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,84 +35,59 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="VenueRwanda"
ctaButton={{
text: "Apply Now",
href: "#contact",
}}
navItems={navItems} />
logo="VenueRwanda"
logoImageSrc="http://img.b2bpic.net/free-vector/black-white-logo-with-white-square_698780-1019.jpg"
ctaButton={{
text: "Apply Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="VenueRwanda"
columns={[
{
title: "Company",
items: [
brand="VenueRwanda"
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Careers", href: "#"},
{
label: "Blog", href: "#"},
],
},
{
label: "Careers",
href: "#",
title: "Product", items: [
{
label: "Features", href: "#features"},
{
label: "Pricing", href: "#pricing"},
{
label: "Security", href: "#"},
],
},
{
label: "Blog",
href: "#",
title: "Resources", items: [
{
label: "Support", href: "#"},
{
label: "API Docs", href: "#"},
{
label: "Help Center", href: "#"},
],
},
],
},
{
title: "Product",
items: [
]}
copyright="© 2024 VenueRwanda. All rights reserved."
links={[
{
label: "Features",
href: "#features",
},
label: "Privacy Policy", href: "#"},
{
label: "Pricing",
href: "#pricing",
},
{
label: "Security",
href: "#",
},
],
},
{
title: "Resources",
items: [
{
label: "Support",
href: "#",
},
{
label: "API Docs",
href: "#",
},
{
label: "Help Center",
href: "#",
},
],
},
]}
copyright="© 2024 VenueRwanda. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);