Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 60544656c7 | |||
| 7c5b88dfd8 | |||
| 41aa474c62 | |||
| a20978191b |
@@ -3,12 +3,12 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { Award, Flame, Heart, Leaf } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -95,59 +95,35 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
description="What our patrons say about us."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Enes Yılmaz", role: "Food Critic", title: "Incredible Atmosphere", quote: "The charcoal grill creates an atmosphere that is both warm and elegant. A true find in Tuzla.", imageSrc: "http://img.b2bpic.net/free-photo/aged-people-maturiry-retirement-concept-charming-cheerful-european-woman-pensioner-dressed-casual-clothes-enjoying-calm-morning-indoors-being-good-mood-waiting-son-breakfast_343059-2670.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Berat Mermer", role: "Food Enthusiast", title: "Perfect Balance", quote: "The Adana is perfectly balanced—soft meat, fresh lavaş, and excellent spice blend.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-break-time_23-2149308479.jpg"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Işıl Uzun", role: "Local Patron", title: "Immaculate Service", quote: "Immaculate hygiene, perfect kebabs, and incredibly kind staff. A must-visit.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-happy-rich-stylish-man-dressed-modern-elegant-clothes-holds-cup-coffee-outdoor-restaurant_613910-3978.jpg"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Bünyamin Kahrıman", role: "Local Guide", title: "Legendary Wings", quote: "The wings are crispy outside, juicy inside. Simply legendary flavors.", imageSrc: "http://img.b2bpic.net/free-photo/friends-talking-by-lunch_1098-14622.jpg"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Selin Demir", role: "Frequent Diner", title: "Exceptional Quality", quote: "Truly the best kebab I have ever had. The seasoning is refined and the meat quality is superior.", imageSrc: "http://img.b2bpic.net/free-photo/aged-people-maturiry-retirement-concept-charming-cheerful-european-woman-pensioner-dressed-casual-clothes-enjoying-calm-morning-indoors-being-good-mood-waiting-son-breakfast_343059-2670.jpg?_wi=2"
|
||||
},
|
||||
]}
|
||||
<TestimonialCardTwo
|
||||
title="Voices of Excellence"
|
||||
description="What our patrons say about us."
|
||||
textboxLayout="split"
|
||||
animationType="depth-3d"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Enes Yılmaz", role: "Food Critic", testimonial: "The charcoal grill creates an atmosphere that is both warm and elegant. A true find in Tuzla." },
|
||||
{ id: "2", name: "Berat Mermer", role: "Food Enthusiast", testimonial: "The Adana is perfectly balanced—soft meat, fresh lavaş, and excellent spice blend." },
|
||||
{ id: "3", name: "Işıl Uzun", role: "Local Patron", testimonial: "Immaculate hygiene, perfect kebabs, and incredibly kind staff. A must-visit." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
<ContactText
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Located in the heart of Tuzla, we welcome you to experience authentic charcoal-grilled flavors. Open daily 11:00 AM - 11:00 PM. Reservations recommended for weekends."
|
||||
buttons={[{ text: "Book a Table", href: "tel:+905550000000" }]}
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
tag="Reserve"
|
||||
title="Secure Your Table"
|
||||
description="For reservations and exclusive catering inquiries, join our private list."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Şahin Kanat"
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Menu", href: "#features" },
|
||||
{ label: "Reservations", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
],
|
||||
},
|
||||
{ title: "Visit Us", items: [{ label: "Tuzla Marina Area, Istanbul", href: "#" }] },
|
||||
{ title: "Quick Links", items: [{ label: "Menu", href: "#features" }, { label: "Reservations", href: "#contact" }] },
|
||||
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Şahin Kanat Kebap. All rights reserved."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user