Merge version_3 into main #4

Merged
bender merged 2 commits from version_3 into main 2026-06-06 14:30:12 +00:00
2 changed files with 9 additions and 8 deletions

View File

@@ -24,14 +24,14 @@ export default function ContactUsPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Strona główna", id: "hero" },
{ name: "Strona główna", id: "/" },
{ name: "Kierunki", id: "destinations" },
{ 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: "Kontakt", href: "/contact-us" }
{ name: "Kontakt", id: "/contact-us" }
]}
brandName="Morocco Wonder Travel"
/>

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>