203 lines
9.8 KiB
TypeScript
203 lines
9.8 KiB
TypeScript
"use client";
|
|
|
|
import { Award, Heart, Sparkles, UtensilsCrossed } from "lucide-react";
|
|
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
|
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|
import ContactText from "@/components/sections/contact/ContactText";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="circleGradient"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
brandName="Payitaht"
|
|
navItems={[
|
|
{ name: "Home", id: "home" },
|
|
{ name: "Menu", id: "menu" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Reservations", id: "contact" },
|
|
{ name: "Contact", id: "contact" },
|
|
]}
|
|
button={{ text: "Book a Table", href: "contact" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitTestimonial
|
|
title="Welcome to Payitaht"
|
|
description="Experience the authentic flavors of Uzbekistan in the heart of Turkey. Our restaurant brings together centuries of culinary tradition, serving hand-crafted dishes prepared with passion and the finest ingredients."
|
|
tag="Authentic Uzbek Cuisine"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
imageSrc="http://img.b2bpic.net/free-photo/hot-spring-rolls-served-with-sweet-chili-sauce_140725-5843.jpg"
|
|
imageAlt="Payitaht Restaurant Interior"
|
|
imagePosition="right"
|
|
mediaAnimation="slide-up"
|
|
testimonials={[
|
|
{
|
|
name: "Aylin Kaya", handle: "Food Enthusiast", testimonial: "The most authentic Uzbek cuisine I've experienced! Every dish tells a story.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/adult-going-date_23-2150168971.jpg"},
|
|
{
|
|
name: "Mehmet Demir", handle: "Travel Blogger", testimonial: "A culinary journey through Central Asia without leaving Istanbul.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-beautiful-woman-years-old-wearing-corporate-clothing-looking-happy_1258-194086.jpg"},
|
|
{
|
|
name: "Fatima Özkan", handle: "Restaurant Critic", testimonial: "Payitaht sets the standard for traditional Uzbek hospitality.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-showing-thumbs-up_176474-95524.jpg"},
|
|
]}
|
|
buttons={[
|
|
{ text: "Reserve Your Table", href: "contact" },
|
|
{ text: "Explore Menu", href: "#menu" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<InlineImageSplitTextAbout
|
|
heading={[
|
|
{ type: "text", content: "Rooted in Silk Road" },
|
|
{
|
|
type: "image", src: "http://img.b2bpic.net/free-photo/clay-pots-market-morocco_23-2148129915.jpg", alt: "Uzbek Cultural Heritage"},
|
|
{ type: "text", content: "Traditions" },
|
|
]}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Our Story", href: "#" },
|
|
{ text: "Chef Profile", href: "#" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<ProductCardOne
|
|
title="Our Signature Dishes"
|
|
description="Discover the heart of Uzbek cuisine with dishes crafted from time-honored recipes and the finest fresh ingredients."
|
|
tag="Menu Highlights"
|
|
tagIcon={UtensilsCrossed}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
gridVariant="three-columns-all-equal-width"
|
|
products={[
|
|
{
|
|
id: "1", name: "Lagman", price: "₺145", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-green-salad-with-herbs-vegetables_114579-2166.jpg", imageAlt: "Lagman - Hand-pulled noodle soup"},
|
|
{
|
|
id: "2", name: "Samsa", price: "₺85", imageSrc: "http://img.b2bpic.net/free-photo/indian-food-assortment-with-copy-space_23-2148747634.jpg", imageAlt: "Samsa - Crispy meat pastry"},
|
|
{
|
|
id: "3", name: "Shashlik", price: "₺165", imageSrc: "http://img.b2bpic.net/free-photo/man-eating-caesar-salad-with-mixed-ingredients_114579-2040.jpg", imageAlt: "Shashlik - Grilled meat skewers"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
title="What Our Guests Say"
|
|
description="Join thousands of satisfied diners who have experienced the magic of authentic Uzbek hospitality."
|
|
tag="Guest Reviews"
|
|
tagIcon={Heart}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Aylin Kaya", role: "Food Enthusiast", company: "Istanbul", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/adult-going-date_23-2150168971.jpg"},
|
|
{
|
|
id: "2", name: "Mehmet Demir", role: "Travel Writer", company: "Turkey", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-beautiful-woman-years-old-wearing-corporate-clothing-looking-happy_1258-194086.jpg"},
|
|
{
|
|
id: "3", name: "Fatima Özkan", role: "Restaurant Critic", company: "Food Magazine", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-showing-thumbs-up_176474-95524.jpg"},
|
|
{
|
|
id: "4", name: "Kerem Arslan", role: "Business Owner", company: "Ankara", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/glad-wet-guy-with-shining-perfect-smile-has-walk-rainy-weather-enjoys-favourite-track-earphones_273609-8617.jpg"},
|
|
]}
|
|
kpiItems={[
|
|
{ value: "12+", label: "Years of Excellence" },
|
|
{ value: "50K+", label: "Happy Guests" },
|
|
{ value: "100%", label: "Authentic Recipes" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
title="Recognized & Celebrated"
|
|
description="Payitaht is proud to be recognized by leading culinary organizations and tourism boards across Turkey."
|
|
tag="Partnerships"
|
|
tagIcon={Award}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
names={[
|
|
"Turkish Culinary Association", "Istanbul Tourism Board", "Heritage Restaurant Alliance", "Central Asian Cultural Center", "Food Excellence Awards", "Authentic Cuisine Initiative", "Istanbul Business Circle"]}
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
text="Ready to experience the flavors of Uzbekistan? Reserve your table at Payitaht today and join us for an unforgettable culinary journey."
|
|
animationType="entrance-slide"
|
|
buttons={[
|
|
{ text: "Book Now", href: "#" },
|
|
{ text: "Call Us", href: "#" },
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="Payitaht"
|
|
columns={[
|
|
{
|
|
title: "Restaurant", items: [
|
|
{ label: "Menu", href: "#menu" },
|
|
{ label: "Catering", href: "#" },
|
|
{ label: "Private Events", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Information", items: [
|
|
{ label: "About Us", href: "#about" },
|
|
{ label: "Our Story", href: "#" },
|
|
{ label: "Contact", href: "#contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Instagram", href: "https://instagram.com" },
|
|
{ label: "Facebook", href: "https://facebook.com" },
|
|
{ label: "Reservations", href: "https://booking.com" },
|
|
],
|
|
},
|
|
]}
|
|
copyrightText="© 2025 Payitaht Restaurant. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|