Merge version_1_1781434658244 into main #1

Merged
bender merged 2 commits from version_1_1781434658244 into main 2026-06-14 10:58:47 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Collections",
"href": "#products"
"name": "Collections", "href": "#products"
},
{
"name": "Our Story",
"href": "#about"
"name": "Our Story", "href": "#about"
},
{
"name": "Trust",
"href": "#testimonials"
"name": "Trust", "href": "#testimonials"
},
{
"name": "Help",
"href": "#faq"
"name": "Help", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
}
];
@@ -43,35 +36,29 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Eurolark"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
navItems={navItems} />
logo="Eurolark"
logoImageSrc="http://img.b2bpic.net/free-vector/minimal-logo-designs-set_53876-94204.jpg"
ctaButton={{
text: "Shop Now", href: "#products"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="Eurolark Kuwait"
copyright="© 2024 Eurolark Travel. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Twitter,
href: "#",
},
{
icon: Facebook,
href: "#",
},
]}
/>
brand="Eurolark Kuwait"
copyright="© 2024 Eurolark Travel. All rights reserved."
socialLinks={[
{
icon: "Instagram", href: "#"},
{
icon: "Twitter", href: "#"},
{
icon: "Facebook", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);