28 Commits

Author SHA1 Message Date
184e1f964e Update src/app/page.tsx 2026-04-17 12:19:16 +00:00
8f6bbced1f Update src/app/page.tsx 2026-04-17 12:09:53 +00:00
0e8aaaf05e Update src/app/page.tsx 2026-04-17 12:09:34 +00:00
eba06dd403 Update src/app/page.tsx 2026-04-17 12:09:10 +00:00
a836ee2361 Update src/app/page.tsx 2026-04-17 12:00:59 +00:00
aca6e9a0f2 Update src/app/page.tsx 2026-04-17 11:56:31 +00:00
485911d02e Update src/app/page.tsx 2026-04-17 11:56:12 +00:00
6f01c338f1 Update src/app/page.tsx 2026-04-17 11:52:30 +00:00
1f78835bcf Update src/app/page.tsx 2026-04-16 13:01:23 +00:00
943a8a7817 Update src/app/page.tsx 2026-04-16 13:01:03 +00:00
32d2bb9e84 Update src/app/page.tsx 2026-04-16 12:58:40 +00:00
1bec7df16e Merge version_6 into main
Merge version_6 into main
2026-04-16 12:46:31 +00:00
dc9563b400 Update src/app/page.tsx 2026-04-16 12:46:28 +00:00
4edf82c79e Merge version_6 into main
Merge version_6 into main
2026-04-16 12:43:30 +00:00
6c65b71593 Update src/app/page.tsx 2026-04-16 12:43:24 +00:00
dcc3e2d175 Merge version_5 into main
Merge version_5 into main
2026-04-16 12:41:26 +00:00
44d3bbf1dc Update src/app/page.tsx 2026-04-16 12:41:23 +00:00
108eef512d Update src/app/menu/page.tsx 2026-04-16 12:41:23 +00:00
9b33b96f9b Merge version_4 into main
Merge version_4 into main
2026-04-16 12:34:15 +00:00
4e15cb562c Update src/app/page.tsx 2026-04-16 12:34:09 +00:00
f2779d76ed Update src/app/menu/page.tsx 2026-04-16 12:34:08 +00:00
3e614667f4 Merge version_3 into main
Merge version_3 into main
2026-04-16 12:32:10 +00:00
0c31b566ec Update src/app/menu/page.tsx 2026-04-16 12:32:07 +00:00
b47d8d1a9f Merge version_2 into main
Merge version_2 into main
2026-04-16 12:14:15 +00:00
865d482514 Update src/app/page.tsx 2026-04-16 12:14:12 +00:00
61f6584c27 Add src/app/menu/page.tsx 2026-04-16 12:14:12 +00:00
a41fbe91af Merge version_1 into main
Merge version_1 into main
2026-04-16 12:07:49 +00:00
31cde82aff Merge version_1 into main
Merge version_1 into main
2026-04-16 12:05:06 +00:00
2 changed files with 116 additions and 268 deletions

60
src/app/menu/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Instagram } from "lucide-react";
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmallSizeMediumTitles"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Ana Sayfa", id: "/#hero" },
{ name: "Hakkında", id: "/#about" },
{ name: "Menü", id: "/menu" },
{ name: "Yorumlar", id: "/#testimonials" },
{ name: "İletişim", id: "/#contact" },
]}
brandName="Onurun Yeri"
/>
<main className="py-24 px-6 md:px-12 flex flex-col items-center">
<h1 className="text-4xl font-bold mb-2">Menümüz</h1>
<div className="w-full h-1 bg-gray-200 mb-8 rounded-full max-w-sm" />
<div className="w-full max-w-6xl mb-12 aspect-[21/9] bg-gray-100 rounded-3xl flex items-center justify-center overflow-hidden">
<img src="http://img.b2bpic.net/free-photo/top-view-table-full-delicious-food-composition_23-2149141352.jpg?_wi=1" alt="Menü Başlık Görseli" className="w-full h-full object-cover" />
</div>
<p className="text-lg text-center mb-12 max-w-2xl">En taze deniz ürünlerimiz ve özel lezzetlerimiz aşağıda yer almaktadır.</p>
<div className="w-full max-w-4xl aspect-video bg-gray-200 rounded-2xl flex items-center justify-center border-2 border-dashed border-gray-400">
<p className="text-gray-500">Menü Detayları</p>
</div>
</main>
<FooterCard
logoText="Onurun Yeri"
copyrightText="© 2024 Onurun Yeri | Urla, İzmir"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,26 +32,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Ana Sayfa",
id: "hero",
},
{
name: "Hakkında",
id: "about",
},
{
name: "Menü",
id: "products",
},
{
name: "Yorumlar",
id: "testimonials",
},
{
name: "İletişim",
id: "contact",
},
{ name: "Ana Sayfa", id: "hero" },
{ name: "Hakkında", id: "about" },
{ name: "Yorumlar", id: "testimonials" },
{ name: "İletişim", id: "contact" },
]}
brandName="Onurun Yeri"
/>
@@ -59,94 +43,32 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Onurun Yeri'nde Gerçek Balık Lezzeti"
description="Urla'nın en samimi köşesinde, günlük taze sardalya ve levrek ile hazırladığımız eşsiz balık ekmek deneyimine davetlisiniz."
description="Urla'nın en samimi köşesinde, sardalye,mezgit ve levrek ile hazırladığımız eşsiz balık ekmek deneyimine davetlisiniz."
testimonials={[
{
name: "Enis Kuzucu",
handle: "@enis",
testimonial: "Her zaman çok taze ve lezzetli. Güler yüzlü hizmetiyle Urla'nın vazgeçilmezi.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-drag-queen-with-drink_23-2149556855.jpg?_wi=1",
},
{
name: "Newqves",
handle: "@newqves",
testimonial: "Sardalya ve levrek ikisi de çok güzeldi. Fiyatlar uygun, servis hızlı.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-view-raw-fish-fresh-chopped-vegetables-lemon-slices-spices-gray-plate-cutlery-set-black-distressed-surface_179666-42655.jpg?_wi=1",
},
{
name: "Ayşe Y.",
handle: "@aysey",
testimonial: "Temiz ve leziz bir küçük restoran. Saygılı işletmeciler.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg?_wi=1",
},
{
name: "Mehmet K.",
handle: "@mehmetk",
testimonial: "Balık ekmek yemek için Urla'da ilk tercih ettiğimiz yer.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/internationals-people-standing-cafe-drinking-cocktails_1157-32440.jpg?_wi=1",
},
{
name: "Zeynep B.",
handle: "@zeyneb",
testimonial: "Harika bir atmosfer ve taze balık. Kesinlikle tavsiye ederim.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-having-lunch-restaurant_23-2150491815.jpg?_wi=1",
},
{ name: "Enis Kuzucu", handle: "@enis", testimonial: "Her zaman çok taze ve lezzetli. Güler yüzlü hizmetiyle Urla'nın vazgeçilmezi.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-drag-queen-with-drink_23-2149556855.jpg?_wi=1" },
{ name: "Newqves", handle: "@newqves", testimonial: "Sardalya ve levrek ikisi de çok güzeldi. Fiyatlar uygun, servis hızlı.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/horizontal-view-raw-fish-fresh-chopped-vegetables-lemon-slices-spices-gray-plate-cutlery-set-black-distressed-surface_179666-42655.jpg?_wi=1" },
{ name: "Ayşe Y.", handle: "@aysey", testimonial: "Temiz ve leziz bir küçük restoran. Saygılı işletmeciler.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg?_wi=1" },
{ name: "Mehmet K.", handle: "@mehmetk", testimonial: "Balık ekmek yemek için Urla'da ilk tercih ettiğimiz yer.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/internationals-people-standing-cafe-drinking-cocktails_1157-32440.jpg?_wi=1" },
{ name: "Zeynep B.", handle: "@zeyneb", testimonial: "Harika bir atmosfer ve taze balık. Kesinlikle tavsiye ederim.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-having-lunch-restaurant_23-2150491815.jpg?_wi=1" },
]}
imageSrc="http://img.b2bpic.net/free-photo/dining-room-background-zoom-calls_23-2149684443.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776428349245-vdzht1k3.jpg"
imageAlt="Onurun Yeri Balık Ekmek"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/laughing-woman-with-dish-menu_23-2147681115.jpg",
alt: "Happy diner",
},
{
src: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
alt: "Happy diner",
},
{
src: "http://img.b2bpic.net/free-photo/happy-woman-eating-outdoors-chinese-asian-food-sitting-stree_197531-31017.jpg",
alt: "Happy diner",
},
{
src: "http://img.b2bpic.net/free-photo/young-woman-eating-salad-cafe_1303-25276.jpg",
alt: "Happy diner",
},
{
src: "http://img.b2bpic.net/free-photo/young-woman-with-plate-vegetables-rice-eggs-kitchen_169016-43588.jpg",
alt: "Happy diner",
},
{ src: "http://img.b2bpic.net/free-photo/laughing-woman-with-dish-menu_23-2147681115.jpg", alt: "Happy diner" },
{ src: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg", alt: "Happy diner" },
{ src: "http://img.b2bpic.net/free-photo/happy-woman-eating-outdoors-chinese-asian-food-sitting-stree_197531-31017.jpg", alt: "Happy diner" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-eating-salad-cafe_1303-25276.jpg", alt: "Happy diner" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-with-plate-vegetables-rice-eggs-kitchen_169016-43588.jpg", alt: "Happy diner" },
]}
avatarText="Mutlu Misafirlerimiz"
marqueeItems={[
{
type: "text",
text: "Taze Balık",
},
{
type: "text",
text: "Urla İskele",
},
{
type: "text",
text: "Lezzet Garantisi",
},
{
type: "text",
text: "Sıcak Atmosfer",
},
{
type: "text",
text: "Güler Yüzlü Hizmet",
},
{ type: "text", text: "Taze Balık" },
{ type: "text", text: "Urla İskele" },
{ type: "text", text: "Lezzet Garantisi" },
{ type: "text", text: "Sıcak Atmosfer" },
{ type: "text", text: "Güler Yüzlü Hizmet" },
]}
/>
</div>
@@ -155,11 +77,11 @@ export default function LandingPage() {
<TestimonialAboutCard
useInvertedBackground={false}
tag="Hakkımızda"
title="Urla'nın En Samimi Restoranı"
title="Urla'nın En Samimi Balıısı"
description="İskele Urla'da, denizin kokusu eşliğinde taze ve lezzetli balıklar sunan küçük bir aile işletmesiyiz. Temizlik ve lezzet bizim önceliğimizdir."
subdescription="Sizleri güler yüzlü ekibimizle, leziz sardalya ve levrek çeşitlerimizle ağırlamaktan mutluluk duyarız."
subdescription="Sizleri güler yüzlü ekibimizle, leziz balık,tavuk ve sandviç çeşitlerimizle ağırlamaktan mutluluk duyarız."
icon={Fish}
imageSrc="http://img.b2bpic.net/free-photo/female-chef-removing-apple-skin_23-2148763193.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776427252824-oh2ftb17.jpg"
imageAlt="Onurun Yeri İşletme"
mediaAnimation="slide-up"
/>
@@ -171,30 +93,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{
id: "f1",
title: "Günlük Taze Balık",
descriptions: [
"Her gün taze tutulan sardalya ve levrekler ile gerçek deniz lezzeti.",
],
imageSrc: "http://img.b2bpic.net/free-photo/fish-sandwiches-with-sprats_114579-37151.jpg",
},
{
id: "f2",
title: "Güler Yüzlü Hizmet",
descriptions: [
"Müşteri memnuniyetini esas alan, saygılı ve ilgili personelimiz.",
],
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-plate-with-fried-toasts-sprats_114579-43914.jpg",
},
{
id: "f3",
title: "Temiz Ortam",
descriptions: [
"Hijyen kurallarına tam uyum sağlayan ferah ve temiz bir ortam.",
],
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-plate-cooked-mussels-wine-with-copyspace_23-2148234983.jpg",
},
{ id: "f1", title: "Günlük Taze Balık", descriptions: ["Her gün taze tutulan sardalya ve levrekler ile gerçek deniz lezzeti."], imageSrc: "http://img.b2bpic.net/free-photo/fish-sandwiches-with-sprats_114579-37151.jpg" },
{ id: "f2", title: "Güler Yüzlü Hizmet", descriptions: ["Müşteri memnuniyetini esas alan, saygılı ve ilgili personelimiz."], imageSrc: "http://img.b2bpic.net/free-photo/beautiful-plate-with-fried-toasts-sprats_114579-43914.jpg" },
{ id: "f3", title: "Temiz Ortam", descriptions: ["Hijyen kurallarına tam uyum sağlayan ferah ve temiz bir ortam."], imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-plate-cooked-mussels-wine-with-copyspace_23-2148234983.jpg" },
]}
title="Neden Biz?"
description="Lezzet ve tazeliği bir araya getiren özel bir deneyim."
@@ -204,54 +105,21 @@ export default function LandingPage() {
<div id="products" data-section="products">
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
textboxLayout="split-actions"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Balık Ekmek",
price: "₺200",
variant: "Popüler",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-fish-arrangement_23-2148510844.jpg",
},
{
id: "p2",
name: "Ekmek Arası Sardalya",
price: "₺220",
variant: "Popüler",
imageSrc: "http://img.b2bpic.net/free-photo/bass-fish-dish-arrangement_23-2148950226.jpg",
},
{
id: "p3",
name: "Levrek Ekmek",
price: "₺250",
variant: "Taze",
imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-fillet-meat-with-vegetable-salad_1203-9188.jpg",
},
{
id: "p4",
name: "Tavuklu Sandviç",
price: "₺150",
variant: "Klasik",
imageSrc: "http://img.b2bpic.net/free-photo/herring-with-lettuce-red-cabbage-wooden-board_114579-57643.jpg",
},
{
id: "p5",
name: "Salata",
price: "₺80",
variant: "Taze",
imageSrc: "http://img.b2bpic.net/free-photo/lobster-roll-isolated-white-background_123827-30992.jpg",
},
{
id: "p6",
name: "Meşrubat Çeşitleri",
price: "₺40",
variant: "İçecek",
imageSrc: "http://img.b2bpic.net/free-photo/view-tasty-fish-white-plate_23-2148308054.jpg",
},
{ id: "p1", name: "Balık Ekmek", price: "₺200", variant: "Popüler", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-fish-arrangement_23-2148510844.jpg" },
{ id: "p2", name: "Ekmek Arası Sardalya", price: "₺220", variant: "Popüler", imageSrc: "http://img.b2bpic.net/free-photo/bass-fish-dish-arrangement_23-2148950226.jpg" },
{ id: "p3", name: "Levrek Ekmek", price: "₺250", variant: "Taze", imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-fillet-meat-with-vegetable-salad_1203-9188.jpg" },
{ id: "p4", name: "Sandviç", price: "₺150", variant: "Klasik", imageSrc: "http://img.b2bpic.net/free-photo/herring-with-lettuce-red-cabbage-wooden-board_114579-57643.jpg" },
{ id: "p5", name: "meze ", price: "₺80", variant: "Taze", imageSrc: "http://img.b2bpic.net/free-photo/lobster-roll-isolated-white-background_123827-30992.jpg" },
{ id: "p6", name: "Balık Çorbası ", price: "₺40", variant: "İçecek", imageSrc: "http://img.b2bpic.net/free-photo/view-tasty-fish-white-plate_23-2148308054.jpg" },
]}
title="Menümüz"
buttons={[
{ text: "Menüye Git", href: "https://drive.google.com/file/d/1BuRAEkKG3C_Pgl2FwRpoT-rHLDcQbMJ5/view?usp=drivesdk" }
]}
title="Öne Çıkan Lezzetler"
description="Popüler ve lezzetli ekmek arası lezzetlerimiz."
/>
</div>
@@ -260,15 +128,7 @@ export default function LandingPage() {
<SocialProofOne
textboxLayout="default"
useInvertedBackground={true}
names={[
"Taze Balık",
"Yerel Urla",
"Lezzet Durakları",
"İskele Gurme",
"Deniz Ürünleri",
"Urla Gastronomi",
"Balık Sevenler",
]}
names={["Taze Balık", "Yerel Urla", "Lezzet Durakları", "İskele Gurme", "Deniz Ürünleri", "Urla Gastronomi", "Balık Sevenler"]}
title="Bizi Tercih Edenlerin Değerlendirmeleri"
description="Urla'nın en sevilen duraklarından biri olmaktan gurur duyuyoruz."
/>
@@ -280,60 +140,16 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "Enis Kuzucu",
role: "Müşteri",
company: "Urla",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-drag-queen-with-drink_23-2149556855.jpg?_wi=2",
},
{
id: "t2",
name: "Newqves",
role: "Rehber",
company: "İzmir",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-view-raw-fish-fresh-chopped-vegetables-lemon-slices-spices-gray-plate-cutlery-set-black-distressed-surface_179666-42655.jpg?_wi=2",
},
{
id: "t3",
name: "Ayşe Y.",
role: "Müşteri",
company: "Urla",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg?_wi=2",
},
{
id: "t4",
name: "Mehmet K.",
role: "Müşteri",
company: "İzmir",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/internationals-people-standing-cafe-drinking-cocktails_1157-32440.jpg?_wi=2",
},
{
id: "t5",
name: "Zeynep B.",
role: "Müşteri",
company: "Urla",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-having-lunch-restaurant_23-2150491815.jpg?_wi=2",
},
{ id: "t1", name: "Enis Kuzucu", role: "Müşteri", company: "Urla", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776426936688-3g5ne4p0.jpg" },
{ id: "t2", name: "Newqves", role: "Rehber", company: "İzmir", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776426949214-g1i2lwba.jpg" },
{ id: "t3", name: "Ayşe Y.", role: "Müşteri", company: "Urla", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776426957599-3cknu9pl.jpg" },
{ id: "t4", name: "Mehmet K.", role: "Müşteri", company: "İzmir", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776426968145-m66iztuz.jpg" },
{ id: "t5", name: "Zeynep B.", role: "Müşteri", company: "Urla", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CR4i5TIKwYCOJLgLNFYwKSGGzf/uploaded-1776426987498-t11v3hdz.jpg" },
]}
kpiItems={[
{
value: "196",
label: "Yorum",
},
{
value: "4.4",
label: "Google Puanı",
},
{
value: "100%",
label: "Müşteri Memnuniyeti",
},
{ value: "196", label: "Yorum" },
{ value: "4.4", label: "Google Puanı" },
{ value: "100%", label: "Müşteri Memnuniyeti" },
]}
title="Müşterilerimiz Ne Dedi?"
description="Onurun Yeri hakkındaki gerçek kullanıcı yorumları."
@@ -344,21 +160,9 @@ export default function LandingPage() {
<FaqSplitText
useInvertedBackground={true}
faqs={[
{
id: "q1",
title: "Çalışma saatleriniz nedir?",
content: "Restoranımız her gün 23:00'e kadar hizmet vermektedir.",
},
{
id: "q2",
title: "Konumunuz nerede?",
content: "İskele, 35430 Urla/İzmir, Türkiye adresindeyiz.",
},
{
id: "q3",
title: "Rezervasyon alıyor musunuz?",
content: "Küçük bir restoran olduğumuz için genellikle sırayla hizmet veriyoruz.",
},
{ id: "q1", title: "Çalışma saatleriniz nedir?", content: "Restoranımız her gün 23:00'e kadar hizmet vermektedir (Yoğunluğa göre değişiklik gösterebilir)" },
{ id: "q2", title: "Konumunuz nerede?", content: "İskele, Urla/İzmir, Türkiye adresindeyiz." },
{ id: "q3", title: "Rezervasyon alıyor musunuz?", content: "Küçük bir restoran olduğumuz için genellikle sırayla hizmet veriyoruz." },
]}
sideTitle="Sıkça Sorulan Sorular"
sideDescription="Onurun Yeri hakkında merak edilenler."
@@ -369,21 +173,13 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="İletişim"
title="Bize Ulaşın"
description="Sorularınız için bizi arayabilir veya İskele Urla'daki yerimize uğrayabilirsiniz."
buttons={[
{
text: "Hemen Ara",
href: "tel:+902327520990",
},
{
text: "Yol Tarifi Al",
href: "https://maps.google.com",
},
{ text: "Hemen Ara", href: "tel:+902327520990" },
{ text: "Yol Tarifi Al", href: "https://maps.google.com" },
]}
/>
</div>
@@ -393,16 +189,8 @@ export default function LandingPage() {
logoText="Onurun Yeri"
copyrightText="© 2024 Onurun Yeri | Urla, İzmir"
socialLinks={[
{
icon: Instagram,
href: "#",
ariaLabel: "Instagram",
},
{
icon: Facebook,
href: "#",
ariaLabel: "Facebook",
},
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
]}
/>
</div>