Update src/app/page.tsx

This commit is contained in:
2026-06-10 16:47:13 +00:00
parent d0d13ade99
commit 4a6546e1e2

View File

@@ -14,14 +14,15 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
const updatedNavItems = [
{ name: "Ana Sayfa", id: "#hero" },
{ name: "Menü", id: "#menu" },
{ name: "Hakkımızda", id: "#about" },
{ name: "Ana Sayfa", id: "/" },
{ name: "Menü", id: "/#menu" },
{ name: "Hakkımızda", id: "/#about" },
{ name: "Galeri", id: "/gallery" },
{ name: "Sipariş Ver", id: "/order" },
{ name: "Konum", id: "/location" },
{ name: "Yorumlar", id: "#testimonials" },
{ name: "İletişim", id: "#contact" }
{ name: "Rezervasyon", id: "/reservations" },
{ name: "Yorumlar", id: "/#testimonials" },
{ name: "İletişim", id: "/#contact" }
];
const updatedFooterColumns = [
@@ -32,7 +33,8 @@ const updatedFooterColumns = [
{ label: "Hakkımızda", href: "/#about" },
{ label: "Galeri", href: "/gallery" },
{ label: "Sipariş Ver", href: "/order" },
{ label: "Konum", href: "/location" }
{ label: "Konum", href: "/location" },
{ label: "Rezervasyon", href: "/reservations" }
]
},
{
@@ -224,7 +226,7 @@ export default function LandingPage() {
{
id: "t4", name: "Murat Akın", role: "Girişimci", testimonial: "Acı Soslu Burger'ı denemeden geçmeyin! Bağımlılık yapan bir tadı var. Servis de çok hızlıydı.", imageSrc: "http://img.b2bpic.net/free-photo/person-taking-photo-seafood-dish-with-salmon_23-2150463274.jpg", imageAlt: "Murat Akın"},
{
id: "t5", name: "Zeynep Tunç", role: "Mimar", testimonial: "Mantar Burger tam bir lezzet şöleni. Kullanılan malzemelerin kalitesi kendini belli ediyor. Kesinlikle tavsiye ederim.", imageSrc: "http://img.b2bpic.net/free-photo/enthusiastic-young-asian-girl-waitress-from-cafe-showing-mobile-phone-application-pointing_1258-199362.jpg", imageAlt: "Zeynep Tunç"},
id: "t5", name: "Zeynep Tunç", role: "Mimar", testimonial: "Mantar Burger tam bir lezzet şöleni. Kullanılan malzemelerin kalitesi kendini belli ediyor. Kesinlikle tavsiye ederim.", imageSrc: "http://img.b2bpic.net/free-photo/enthusiastic-young-asian-girl-waitress-from-cafe-showing-mobile-phone-application-pointing_1258-199362.jpg", alt: "Zeynep Tunç"},
{
id: "t6", name: "Emre Güler", role: "Teknoloji Uzmanı", testimonial: "Online sipariş sistemi çok pratik, burgerler sıcak ve taze geliyor. Favori mekanım oldu!", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269179.jpg", imageAlt: "Couple enjoying food in restaurant"}
]}
@@ -296,4 +298,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}