Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
37
src/app/karin-germe/page.tsx
Normal file
37
src/app/karin-germe/page.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
|
||||
export default function KarinGermePage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "/" },
|
||||
{ name: "Karın Germe", id: "/karin-germe" },
|
||||
{ name: "Lipödem", id: "/lipodem" },
|
||||
{ name: "İletişim", id: "/contact" },
|
||||
]}
|
||||
brandName="Dr. Turab İSMAYILOV"
|
||||
/>
|
||||
<HeroLogo
|
||||
logoText="Karın Germe (Abdominoplasti)"
|
||||
description="Daha düz, sıkı ve estetik bir karın bölgesi için cerrahi çözümler."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-hand-using-medical-tool-patient_23-2149103624.jpg"
|
||||
/>
|
||||
<div className="container mx-auto py-16 px-4">
|
||||
<h2 className="text-3xl font-bold mb-6">Karın Germe Nedir?</h2>
|
||||
<p className="mb-4">Karın germe operasyonu, karın bölgesindeki sarkan deri ve fazla yağ dokusunun uzaklaştırıldığı, karın kaslarının sıkılaştırıldığı kapsamlı bir estetik cerrahidir.</p>
|
||||
</div>
|
||||
<ContactSplitForm title="Randevu Alın" description="Detaylı bilgi için iletişime geçin." inputs={[{name: 'name', type: 'text', placeholder: 'İsim'}]} />
|
||||
<FooterMedia logoText="Dr. Turab İSMAYILOV" columns={[]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
37
src/app/lipodem/page.tsx
Normal file
37
src/app/lipodem/page.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
|
||||
export default function LipodemPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "/" },
|
||||
{ name: "Karın Germe", id: "/karin-germe" },
|
||||
{ name: "Lipödem", id: "/lipodem" },
|
||||
{ name: "İletişim", id: "/contact" },
|
||||
]}
|
||||
brandName="Dr. Turab İSMAYILOV"
|
||||
/>
|
||||
<HeroLogo
|
||||
logoText="Lipödem Tedavisi"
|
||||
description="Bacaklarda ve vücutta düzensiz yağ birikimi ile karakterize lipödem için uzman cerrahi çözümler."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-portrait-women-with-all-kinds-body_23-2149159287.jpg?_wi=2"
|
||||
/>
|
||||
<div className="container mx-auto py-16 px-4">
|
||||
<h2 className="text-3xl font-bold mb-6">Lipödem Tedavisi Hakkında</h2>
|
||||
<p className="mb-4">Lipödem, genellikle alt ekstremiteleri etkileyen ve ağrılı bir yapıya sahip olabilen yağ dağılım bozukluğudur. Tedavisi genellikle özel liposuction teknikleri ile gerçekleştirilir.</p>
|
||||
</div>
|
||||
<ContactSplitForm title="Randevu Alın" description="Lipödem tedavisi hakkında uzman görüşü alın." inputs={[{name: 'name', type: 'text', placeholder: 'İsim'}]} />
|
||||
<FooterMedia logoText="Dr. Turab İSMAYILOV" columns={[]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
30
src/app/liposuction/page.tsx
Normal file
30
src/app/liposuction/page.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function LiposuctionPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[{ name: "Anasayfa", id: "/" }, { name: "Burun Estetiği", id: "rinoplasti" }, { name: "Liposuction", id: "liposuction" }, { name: "İletişim", id: "#contact" }]}
|
||||
brandName="Dr. Turab İSMAYILOV"
|
||||
/>
|
||||
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
|
||||
<h1 className="text-5xl font-bold mb-6">Liposuction</h1>
|
||||
<p className="text-xl text-gray-600 mb-8">Vücudun belirli bölgelerindeki inatçı yağ birikintilerini kalıcı olarak uzaklaştıran, vücut kontürünüzü yeniden şekillendiren modern bir yöntemdir.</p>
|
||||
<h2 className="text-3xl font-semibold mb-4">Kimler İçin Uygundur?</h2>
|
||||
<p className="mb-6">Kilo vermesine rağmen belirli bölgelerde (karın, basen, çene altı) bölgesel yağlanmadan şikayet eden sağlıklı bireyler için idealdir.</p>
|
||||
<h2 className="text-3xl font-semibold mb-4">Recovery (İyileşme)</h2>
|
||||
<p className="mb-8">İşlem sonrası birkaç gün dinlenme önerilir. Ödemlerin inmesi 4-6 hafta sürebilir, ancak sonuçlar kısa sürede fark edilir.</p>
|
||||
</div>
|
||||
<div id="contact"><ContactSplitForm title="Liposuction Hakkında Bilgi Alın" description="Vücut şekillendirme için uzman görüşü alın." inputs={[{ name: "name", type: "text", placeholder: "Adınız", required: true }, { name: "email", type: "email", placeholder: "E-posta", required: true }]} /></div>
|
||||
<FooterMedia logoText="Dr. Turab İSMAYILOV" columns={[]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -32,6 +32,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "hero" },
|
||||
{ name: "Hizmetler", id: "services" },
|
||||
{ name: "Yüz Germe", id: "/yuz-germe" },
|
||||
{ name: "Hakkımızda", id: "about" },
|
||||
{ name: "İletişim", id: "contact" },
|
||||
]}
|
||||
@@ -136,7 +137,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: "#services" }, { label: "Karın Germe", href: "#services" }] },
|
||||
{ title: "Hizmetler", items: [{ label: "Burun Estetiği", href: "#services" }, { label: "Liposuction", href: "#services" }, { label: "Karın Germe", href: "#services" }, { label: "Yüz Germe", href: "/yuz-germe" }] },
|
||||
{ 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."
|
||||
|
||||
34
src/app/rinoplasti/page.tsx
Normal file
34
src/app/rinoplasti/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function RinoplastiPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[{ name: "Anasayfa", id: "/" }, { name: "Burun Estetiği", id: "rinoplasti" }, { name: "Liposuction", id: "liposuction" }, { name: "İletişim", id: "#contact" }]}
|
||||
brandName="Dr. Turab İSMAYILOV"
|
||||
/>
|
||||
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
|
||||
<h1 className="text-5xl font-bold mb-6">Burun Estetiği (Rinoplasti)</h1>
|
||||
<p className="text-xl text-gray-600 mb-8">Rinoplasti, sadece estetik bir kaygı değil, aynı zamanda nefes alma fonksiyonlarınızı iyileştiren kritik bir cerrahi süreçtir. Yüz hatlarınızla %100 uyumlu doğal sonuçlar hedefliyoruz.</p>
|
||||
<h2 className="text-3xl font-semibold mb-4">Prosedür Detayları</h2>
|
||||
<p className="mb-6">Operasyon genel anestezi altında yapılır ve ortalama 2-3 saat sürer. İyileşme sürecinde ilk hafta oldukça kritiktir.</p>
|
||||
<h2 className="text-3xl font-semibold mb-4">Avantajlar</h2>
|
||||
<ul className="list-disc pl-6 mb-8 space-y-2">
|
||||
<li>Daha özgüvenli bir yüz ifadesi</li>
|
||||
<li>Fonksiyonel nefes iyileşmesi</li>
|
||||
<li>Kişiye özel planlama</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="contact"><ContactSplitForm title="Rinoplasti Hakkında Bilgi Alın" description="Size özel analizimiz için hemen iletişime geçin." inputs={[{ name: "name", type: "text", placeholder: "Adınız", required: true }, { name: "email", type: "email", placeholder: "E-posta", required: true }]} /></div>
|
||||
<FooterMedia logoText="Dr. Turab İSMAYILOV" columns={[]} />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
87
src/app/yuz-germe/page.tsx
Normal file
87
src/app/yuz-germe/page.tsx
Normal file
@@ -0,0 +1,87 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
|
||||
export default function YuzGermePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Anasayfa", id: "/" },
|
||||
{ name: "Hizmetler", id: "/#services" },
|
||||
{ name: "Yüz Germe", id: "/yuz-germe" },
|
||||
{ name: "İletişim", id: "/#contact" },
|
||||
]}
|
||||
brandName="Dr. Turab İSMAYILOV"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Yüz Germe (Face Lift)"
|
||||
description="Yaşlanma belirtilerini geride bırakın. Yüz germe ameliyatı ile daha genç, dinamik ve doğal bir görünüm elde edin."
|
||||
buttons={[
|
||||
{ text: "Randevu Al", href: "#contact" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-woman-after-face-lift-procedure.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="procedure-details" data-section="procedure-details" className="py-20">
|
||||
<div className="container mx-auto px-4">
|
||||
<h2 className="text-4xl font-bold mb-6">Yüz Germe Nedir?</h2>
|
||||
<p className="text-lg mb-4">Yüz germe (ritidektomi), yüz ve boyun bölgesindeki sarkmış deri ve derin kırışıklıkları gidermek amacıyla yapılan cerrahi bir işlemdir. Bu işlem, yüzün alt kısımlarındaki dokuları sıkılaştırarak daha genç bir ifade kazandırır.</p>
|
||||
<h3 className="text-2xl font-semibold mb-4">Kimler İçin Uygundur?</h3>
|
||||
<ul className="list-disc pl-6 space-y-2 mb-8">
|
||||
<li>Yüz ve boyun bölgesinde sarkma yaşayanlar</li>
|
||||
<li>Derin nazolabial çizgileri olanlar</li>
|
||||
<li>Çene hattında belirsizleşme gözlemleyenler</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Konsültasyon Planlayın"
|
||||
description="Yüz germe işleminiz için uzman görüşü alın."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Adınız Soyadınız", required: true },
|
||||
{ name: "email", type: "email", placeholder: "E-posta Adresiniz", required: true },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Detaylı bilgi almak istiyorum..." }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="Dr. Turab İSMAYILOV"
|
||||
columns={[
|
||||
{ title: "Hizmetler", items: [{ label: "Burun Estetiği", href: "/#services" }, { label: "Yüz Germe", href: "/yuz-germe" }] },
|
||||
{ title: "İletişim", items: [{ label: "Randevu", href: "#contact" }] },
|
||||
]}
|
||||
copyrightText="© 2025 Dr. Turab İsmayılov. Tüm hakları saklıdır."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user