chore: make rooms (odalar) section passive
This commit is contained in:
@@ -343,6 +343,7 @@ export default async function Home({ params }: { params: Promise<{ lang: string
|
|||||||
{/* ──────────────────────────────────────────
|
{/* ──────────────────────────────────────────
|
||||||
ROOMS
|
ROOMS
|
||||||
────────────────────────────────────────── */}
|
────────────────────────────────────────── */}
|
||||||
|
{/*
|
||||||
<section className="py-28 bg-white">
|
<section className="py-28 bg-white">
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
<ScrollReveal className="text-center mb-16">
|
<ScrollReveal className="text-center mb-16">
|
||||||
@@ -408,6 +409,7 @@ export default async function Home({ params }: { params: Promise<{ lang: string
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
*/}
|
||||||
|
|
||||||
{/* ──────────────────────────────────────────
|
{/* ──────────────────────────────────────────
|
||||||
ACTIVITIES — BENTO GRID
|
ACTIVITIES — BENTO GRID
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ const baseUrl = 'https://kitebeachakyaka.com.tr';
|
|||||||
const langs = ['tr', 'en'];
|
const langs = ['tr', 'en'];
|
||||||
const routes = [
|
const routes = [
|
||||||
{ path: '', changeFrequency: 'daily' as const, priority: 1.0 },
|
{ path: '', changeFrequency: 'daily' as const, priority: 1.0 },
|
||||||
{ path: '/odalar', changeFrequency: 'weekly' as const, priority: 0.9 },
|
// { path: '/odalar', changeFrequency: 'weekly' as const, priority: 0.9 },
|
||||||
{ path: '/aktiviteler', changeFrequency: 'weekly' as const, priority: 0.9 },
|
{ path: '/aktiviteler', changeFrequency: 'weekly' as const, priority: 0.9 },
|
||||||
{ path: '/etkinlikler', changeFrequency: 'weekly' as const, priority: 0.9 },
|
{ path: '/etkinlikler', changeFrequency: 'weekly' as const, priority: 0.9 },
|
||||||
{ path: '/restoran', changeFrequency: 'weekly' as const, priority: 0.8 },
|
{ path: '/restoran', changeFrequency: 'weekly' as const, priority: 0.8 },
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ export default function Footer({ lang = "tr" }: { lang?: string }) {
|
|||||||
const isEn = lang === "en";
|
const isEn = lang === "en";
|
||||||
const quickLinks = isEn ? [
|
const quickLinks = isEn ? [
|
||||||
{ name: "Home", href: "/en" },
|
{ name: "Home", href: "/en" },
|
||||||
{ name: "Rooms", href: "/en/odalar" },
|
// { name: "Rooms", href: "/en/odalar" },
|
||||||
{ name: "Activities", href: "/en/aktiviteler"},
|
{ name: "Activities", href: "/en/aktiviteler"},
|
||||||
{ name: "Restaurant", href: "/en/restoran" },
|
{ name: "Restaurant", href: "/en/restoran" },
|
||||||
{ name: "Events", href: "/en/etkinlikler"},
|
{ name: "Events", href: "/en/etkinlikler"},
|
||||||
@@ -41,7 +41,7 @@ export default function Footer({ lang = "tr" }: { lang?: string }) {
|
|||||||
{ name: "About Us", href: "/en/hakkimizda" },
|
{ name: "About Us", href: "/en/hakkimizda" },
|
||||||
] : [
|
] : [
|
||||||
{ name: "Ana Sayfa", href: "/tr" },
|
{ name: "Ana Sayfa", href: "/tr" },
|
||||||
{ name: "Odalar", href: "/tr/odalar" },
|
// { name: "Odalar", href: "/tr/odalar" },
|
||||||
{ name: "Aktiviteler", href: "/tr/aktiviteler"},
|
{ name: "Aktiviteler", href: "/tr/aktiviteler"},
|
||||||
{ name: "Restoran", href: "/tr/restoran" },
|
{ name: "Restoran", href: "/tr/restoran" },
|
||||||
{ name: "Etkinlikler", href: "/tr/etkinlikler"},
|
{ name: "Etkinlikler", href: "/tr/etkinlikler"},
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import { motion, AnimatePresence } from "framer-motion";
|
|||||||
import { Menu, X, Globe } from "lucide-react";
|
import { Menu, X, Globe } from "lucide-react";
|
||||||
|
|
||||||
const navLinksEn = [
|
const navLinksEn = [
|
||||||
{ name: "Rooms", href: "/en/odalar" },
|
// { name: "Rooms", href: "/en/odalar" },
|
||||||
{ name: "Activities", href: "/en/aktiviteler" },
|
{ name: "Activities", href: "/en/aktiviteler" },
|
||||||
{ name: "Restaurant", href: "/en/restoran" },
|
{ name: "Restaurant", href: "/en/restoran" },
|
||||||
{ name: "Events", href: "/en/etkinlikler" },
|
{ name: "Events", href: "/en/etkinlikler" },
|
||||||
@@ -17,7 +17,7 @@ const navLinksEn = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
const navLinksTr = [
|
const navLinksTr = [
|
||||||
{ name: "Odalar", href: "/tr/odalar" },
|
// { name: "Odalar", href: "/tr/odalar" },
|
||||||
{ name: "Aktiviteler", href: "/tr/aktiviteler" },
|
{ name: "Aktiviteler", href: "/tr/aktiviteler" },
|
||||||
{ name: "Restoran", href: "/tr/restoran" },
|
{ name: "Restoran", href: "/tr/restoran" },
|
||||||
{ name: "Etkinlikler", href: "/tr/etkinlikler" },
|
{ name: "Etkinlikler", href: "/tr/etkinlikler" },
|
||||||
|
|||||||
Reference in New Issue
Block a user