Update src/app/page.tsx

This commit is contained in:
2026-04-05 14:47:15 +00:00
parent 3fa03a78fe
commit e117bf4e9e

View File

@@ -32,12 +32,12 @@ export default function LandingPage() {
navItems={[
{ name: "Anasayfa", id: "hero" },
{ name: "Hizmetler", id: "services" },
{ name: "Yüz Germe", id: "yuz-germe" },
{ name: "Lipödem", id: "lipodem" },
{ name: "Yüz Germe", id: "/yuz-germe" },
{ name: "Lipödem", id: "/lipodem" },
{ name: "Liposuction", id: "/liposuction" },
{ name: "Hakkımızda", id: "about" },
{ name: "İletişim", id: "contact" },
]}
],
brandName="Dr. Turab İSMAYILOV"
/>
</div>
@@ -94,10 +94,10 @@ export default function LandingPage() {
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Ayşe Y.", role: "Hasta", company: "Rinoplasti", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/female-patient-smiling-while-looking-doctor_107420-74008.jpg" },
{ id: "2", name: "Mehmet K.", role: "Hasta", company: "Liposuction", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-brunette-girl-posing-with-closed-eyes_176420-8507.jpg" },
{ id: "2", name: "Mehmet K.", role: "Hasta", company: "Liposuction", rating: 5, imageSrc: "http://img.b2bpic.net/young-beautiful-brunette-girl-posing-with-closed-eyes_176420-8507.jpg" },
{ id: "3", name: "Selin D.", role: "Hasta", company: "Yüz Germe", rating: 5, imageSrc: "http://img.b2bpic.net/attractive-smiling-doctor-holding-hand-heart-dreamily-looking-camera-isolated-tender-touched-expression_574295-2653.jpg" },
{ id: "4", name: "Canan B.", role: "Hasta", company: "Karın Germe", rating: 5, imageSrc: "http://img.b2bpic.net/woman-cosmetologist-making-beauty-procedures_1303-26019.jpg" },
{ id: "5", name: "Emre S.", role: "Hasta", company: "Lipödem", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-posing_23-2149265857.jpg" },
{ id: "5", name: "Emre S.", role: "Hasta", company: "Lipödem", rating: 5, imageSrc: "http://img.b2bpic.net/close-up-smiley-woman-posing_23-2149265857.jpg" },
]}
title="Hastalarımız Ne Diyor?"
description="Operasyon sonrası memnuniyetlerini paylaşan hastalarımızın yorumları."
@@ -139,7 +139,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/waiting-room-hospital-lobby-with-reception-counter-desk-diverse-people-waiting-attend-checkup-visit-appointment-health-care-examination-emergency-area-medical-clinic_482257-46891.jpg?_wi=2"
logoText="Dr. Turab İSMAYILOV"
columns={[
{ title: "Hizmetler", items: [{ label: "Burun Estetiği", href: "#services" }, { label: "Liposuction", href: "/liposuction" }, { label: "Karın Germe", href: "#services" }, { label: "Yüz Germe", href: "#yuz-germe" }, { label: "Lipödem", href: "#lipodem" }] },
{ title: "Hizmetler", items: [{ label: "Burun Estetiği", href: "#services" }, { label: "Liposuction", href: "/liposuction" }, { label: "Karın Germe", href: "#services" }, { label: "Yüz Germe", href: "/yuz-germe" }, { label: "Lipödem", href: "/lipodem" }] },
{ title: "İletişim", items: [{ label: "Bize Ulaşın", href: "#contact" }, { label: "Randevu", href: "#contact" }] },
]}
copyrightText="© 2025 Dr. Turab İsmayılov. Tüm hakları saklıdır."
@@ -148,4 +148,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}