Add src/app/reservations/page.tsx
This commit is contained in:
40
src/app/reservations/page.tsx
Normal file
40
src/app/reservations/page.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import ReactLenis from "lenis/react";
|
||||
|
||||
export default function ReservationsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "/" },
|
||||
{ name: "Rezervasyon", id: "/reservations" },
|
||||
{ name: "Catering", id: "/catering" },
|
||||
]}
|
||||
brandName="Karadeniz Tadal Pide Salonu"
|
||||
/>
|
||||
<ContactSplitForm
|
||||
title="Rezervasyon Oluşturun"
|
||||
description="Size özel masanızı ayırtmak için lütfen bilgilerinizi girin."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Adınız Soyadınız", required: true },
|
||||
{ name: "date", type: "date", placeholder: "Tarih", required: true },
|
||||
{ name: "people", type: "number", placeholder: "Kişi Sayısı", required: true },
|
||||
]}
|
||||
buttonText="Rezervasyonu Tamamla"
|
||||
/>
|
||||
<FooterBaseCard
|
||||
logoText="Karadeniz Tadal"
|
||||
columns={[
|
||||
{ title: "Kurumsal", items: [{ label: "Anasayfa", href: "/" }, { label: "Rezervasyon", href: "/reservations" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user