Add src/app/location/page.tsx
This commit is contained in:
37
src/app/location/page.tsx
Normal file
37
src/app/location/page.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function LocationPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "/" },
|
||||
{ name: "Galeri", id: "/gallery" },
|
||||
{ name: "Konum", id: "/location" },
|
||||
]}
|
||||
brandName="Karadeniz Tadal Pide Salonu"
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<ContactText
|
||||
text="Karadeniz Tadal Pide Salonu, Şehrin merkezinde geleneksel lezzet durağınız. Haftanın 6 günü 10:00 - 22:00 saatleri arasında hizmetinizdeyiz (Cuma günleri kapalıyız)."
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
<FooterBaseCard
|
||||
logoText="Karadeniz Tadal"
|
||||
columns={[
|
||||
{ title: "Kurumsal", items: [{ label: "Anasayfa", href: "/" }] },
|
||||
{ title: "Bize Ulaşın", items: [{ label: "Konum", href: "/location" }, { label: "Galeri", href: "/gallery" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user