Update src/app/morocco-tours/page.tsx

This commit is contained in:
2026-06-06 14:30:09 +00:00
parent 86431632db
commit bde1e2fbfd

View File

@@ -8,12 +8,13 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function MoroccoToursPage() {
const navItems = [
{ name: "Strona główna", href: "/" },
{ name: "Strona główna", id: "/" },
{ name: "Kierunki", id: "destinations" },
{ name: "Wycieczki", href: "/morocco-tours" },
{ name: "Jednodniowe", href: "/day-trips" },
{ name: "Wycieczki", id: "/morocco-tours" },
{ name: "Jednodniowe", id: "/day-trips" },
{ name: "Dlaczego my", id: "why-us" },
{ name: "Opinie", id: "testimonials" }, { name: "FAQ", id: "faq" },
{ name: "Opinie", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Kontakt", id: "contact" }
];
@@ -73,8 +74,8 @@ export default function MoroccoToursPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Morocco Wonder Travel"
leftLink={{ text: "Strona główna", href: "/" }}
rightLink={{ text: "Kontakt", href: "/#contact" }}
leftLink={{ text: "Strona główna", href: "#hero" }}
rightLink={{ text: "Kontakt", href: "/contact-us" }}
/>
</div>
</ReactLenis>