From d0d13ade9962a0b719a925283da1cf195d1d54dc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 16:47:12 +0000 Subject: [PATCH] Add src/app/location/page.tsx --- src/app/location/page.tsx | 130 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 src/app/location/page.tsx diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx new file mode 100644 index 0000000..582b183 --- /dev/null +++ b/src/app/location/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { Metadata } from "next"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqBase from '@/components/sections/faq/FaqBase'; + +export const metadata: Metadata = { + title: 'Burg Burger | Konum ve Harita', + description: 'Burg Burger İstanbul şubesinin konumunu ve yol tariflerini alın. Size en yakın lezzet durağı.', +}; + +const updatedNavItems = [ + { name: "Ana Sayfa", id: "/" }, + { name: "Menü", id: "/#menu" }, + { name: "Hakkımızda", id: "/#about" }, + { name: "Galeri", id: "/gallery" }, + { name: "Sipariş Ver", id: "/order" }, + { name: "Konum", id: "/location" }, + { name: "Rezervasyon", id: "/reservations" }, + { name: "Yorumlar", id: "/#testimonials" }, + { name: "İletişim", id: "/#contact" } +]; + +const updatedFooterColumns = [ + { + title: "Hızlı Erişim", items: [ + { label: "Ana Sayfa", href: "/" }, + { label: "Menü", href: "/#menu" }, + { label: "Hakkımızda", href: "/#about" }, + { label: "Galeri", href: "/gallery" }, + { label: "Sipariş Ver", href: "/order" }, + { label: "Konum", href: "/location" }, + { label: "Rezervasyon", href: "/reservations" } + ] + }, + { + title: "Yardım", items: [ + { label: "İletişim", href: "/#contact" }, + { label: "Sıkça Sorulan Sorular", href: "/#faq" }, + { label: "Gizlilik Politikası", href: "#" } + ] + }, + { + title: "Sosyal Medya", items: [ + { label: "Instagram", href: "#" }, + { label: "Facebook", href: "#" }, + { label: "Twitter", href: "#" } + ] + } +]; + +export default function LocationPage() { + return ( + + + + +
+ console.log('Yol Tarifi Al') }, + { text: "Hemen Ara", href: "tel:+902121234567" } + ]} + mediaAnimation="slide-up" + tagAnimation="opacity" + buttonAnimation="slide-up" + /> +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file