Merge version_1_1781680369619 into main #1

Merged
bender merged 2 commits from version_1_1781680369619 into main 2026-06-17 07:13:54 +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": "Highlights",
"href": "#highlights"
"name": "Highlights", "href": "#highlights"
},
{
"name": "Memories",
"href": "#testimonials"
"name": "Memories", "href": "#testimonials"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -42,59 +35,45 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Egypt Diary"
ctaButton={{
text: "Contact Me",
href: "#contact",
}}
navItems={navItems} />
logo="Egypt Diary"
logoImageSrc="http://img.b2bpic.net/free-photo/hot-air-balloon-ai-generated_268835-18737.jpg"
ctaButton={{
text: "Contact Me", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Egypt Travel Diary"
columns={[
{
title: "Explore",
items: [
brand="Egypt Travel Diary"
columns={[
{
label: "Cairo",
href: "#",
title: "Explore", items: [
{
label: "Cairo", href: "#"},
{
label: "Luxor", href: "#"},
],
},
{
label: "Luxor",
href: "#",
title: "Planning", items: [
{
label: "Tips", href: "#"},
{
label: "Itineraries", href: "#"},
],
},
],
},
{
title: "Planning",
items: [
]}
copyright="© 2024 Egypt Travel Diary"
links={[
{
label: "Tips",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Itineraries",
href: "#",
},
],
},
]}
copyright="© 2024 Egypt Travel Diary"
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);