Merge version_1_1781436897783 into main #1

Merged
bender merged 2 commits from version_1_1781436897783 into main 2026-06-14 11:36:13 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Tours",
"href": "#products"
"name": "Tours", "href": "#products"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#features"
"name": "Services", "href": "#features"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,70 +35,51 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Kenya Wild Explorer"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Kenya Wild Explorer"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-design-ibiza-label-collection_23-2149404376.jpg"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Kenya Wild Explorer"
columns={[
{
items: [
brand="Kenya Wild Explorer"
columns={[
{
label: "About Us",
href: "#about",
items: [
{
label: "About Us", href: "#about"},
{
label: "Services", href: "#features"},
{
label: "Tours", href: "#products"},
],
},
{
label: "Services",
href: "#features",
items: [
{
label: "Safety Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
{
label: "Privacy Policy", href: "#"},
],
},
{
label: "Tours",
href: "#products",
items: [
{
label: "Support", href: "#contact"},
{
label: "FAQ", href: "#faq"},
{
label: "Careers", href: "#"},
],
},
],
},
{
items: [
{
label: "Safety Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
{
items: [
{
label: "Support",
href: "#contact",
},
{
label: "FAQ",
href: "#faq",
},
{
label: "Careers",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);