8 Commits

Author SHA1 Message Date
edef43af7d Update src/app/layout.tsx 2026-03-09 01:44:25 +00:00
f847e63bd2 Update src/app/tedaviler/page.tsx 2026-03-09 01:43:38 +00:00
fff1ef3e3c Update src/app/page.tsx 2026-03-09 01:43:38 +00:00
c8986ee420 Update src/app/layout.tsx 2026-03-09 01:43:37 +00:00
5c8e0d9392 Update src/app/iletisim/page.tsx 2026-03-09 01:43:37 +00:00
a8b1def07c Update src/app/hakkimizda/page.tsx 2026-03-09 01:43:37 +00:00
b53c7c0656 Update src/app/doktorlar/page.tsx 2026-03-09 01:43:36 +00:00
e2de799766 Merge version_2 into main
Merge version_2 into main
2026-03-09 01:40:12 +00:00
6 changed files with 134 additions and 198 deletions

View File

@@ -6,13 +6,12 @@ import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
import { Users, Building2, Phone, Heart, Shield, Zap, Globe } from "lucide-react";
import { Users, Building2, Phone, Heart, Zap, Globe } from "lucide-react";
export default function TeamPage() {
const navItems = [
{ name: "Ana Sayfa", id: "/" },
{ name: "Hakkımızda", id: "/about" },
{ name: "Hakkımızda", id: "/hakkimizda" },
{ name: "Tedaviler", id: "/tedaviler" },
{ name: "Doktorlar", id: "/doktorlar" },
{ name: "İletişim", id: "/iletisim" },
@@ -22,9 +21,9 @@ export default function TeamPage() {
{
title: "Hızlı Linkler", items: [
{ label: "Ana Sayfa", href: "/" },
{ label: "Hakkımızda", href: "about" },
{ label: "Tedaviler", href: "services" },
{ label: "Doktorlar", href: "team" },
{ label: "Hakkımızda", href: "/hakkimizda" },
{ label: "Tedaviler", href: "/tedaviler" },
{ label: "Doktorlar", href: "/doktorlar" },
],
},
{
@@ -60,10 +59,7 @@ export default function TeamPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems.map((item) => ({
name: item.name,
id: item.id.startsWith("/") ? item.id : `#${item.id}`,
}))}
navItems={navItems}
brandName="Kanarya"
bottomLeftText="Küçükçekmece, İstanbul"
bottomRightText="info@kanarya-dis.com"
@@ -74,18 +70,14 @@ export default function TeamPage() {
<TeamCardTwo
members={[
{
id: "1", name: "Dr. Kerim Başaran", role: "Diş Hekimi & Kurucu", description:
"Semtin güvenilir ve tecrübeli diş hekimlerinden biridir. Yılların deneyimiyle hastalarına güven veren bir yaklaşımı vardır.", imageSrc:
"http://img.b2bpic.net/free-photo/front-view-doctor-holding-stethoscope_23-2148285702.jpg?_wi=2", imageAlt: "Dr. Kerim Başaran", socialLinks: [
id: "1", name: "Dr. Kerim Başaran", role: "Diş Hekimi & Kurucu", description: "Semtin güvenilir ve tecrübeli diş hekimlerinden biridir. Yılların deneyimiyle hastalarına güven veren bir yaklaşımı vardır.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-holding-stethoscope_23-2148285702.jpg?_wi=2", imageAlt: "Dr. Kerim Başaran", socialLinks: [
{
icon: Globe,
url: "https://kanarya-dis.com"},
],
},
{
id: "2", name: "Dr. Enes Yılmaz", role: "Diş Hekimi", description:
"Hastalarla kurduğu samimi iletişim ve özellikle diş hekimi korkusu yaşayan hastalara yaklaşımıyla bilinir. Hastanın konforunu her zaman ön planda tutar.", imageSrc:
"http://img.b2bpic.net/free-photo/pleased-young-bald-male-doctor-wearing-medical-robe-stethoscope-showing-you-gesture-isolated-blue-background_141793-63106.jpg?_wi=2", imageAlt: "Dr. Enes Yılmaz", socialLinks: [
id: "2", name: "Dr. Enes Yılmaz", role: "Diş Hekimi", description: "Hastalarla kurduğu samimi iletişim ve özellikle diş hekimi korkusu yaşayan hastalara yaklaşımıyla bilinir. Hastanın konforunu her zaman ön planda tutar.", imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-bald-male-doctor-wearing-medical-robe-stethoscope-showing-you-gesture-isolated-blue-background_141793-63106.jpg?_wi=2", imageAlt: "Dr. Enes Yılmaz", socialLinks: [
{
icon: Globe,
url: "https://kanarya-dis.com"},
@@ -125,10 +117,8 @@ export default function TeamPage() {
title="Sağlıklı Bir Gülüş İçin İlk Adımı Atın"
description="Randevu almak veya sorularınız için bize ulaşın. Kanarya ekibi size yardımcı olmaktan mutlu olacaktır."
buttons={[
{
text: "Randevu Talep Et", href: "/iletisim"},
{
text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567"},
{ text: "Randevu Talep Et", href: "/iletisim" },
{ text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -144,4 +134,4 @@ export default function TeamPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,45 +1,41 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Heart, Shield, Users, Phone, Globe } from "lucide-react";
import { Heart, Trophy, Phone, Award, Smile } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Ana Sayfa", id: "/" },
{ name: "Hakkımızda", id: "/hakkimizda" },
{ name: "Tedaviler", id: "services" },
{ name: "Doktorlar", id: "team" },
{ name: "İletişim", id: "contact" },
{ name: "Tedaviler", id: "/tedaviler" },
{ name: "Doktorlar", id: "/doktorlar" },
{ name: "İletişim", id: "/iletisim" },
];
const footerColumns = [
{
title: "Hızlı Linkler",
items: [
title: "Hızlı Linkler", items: [
{ label: "Ana Sayfa", href: "/" },
{ label: "Hakkımızda", href: "/hakkimizda" },
{ label: "Tedaviler", href: "#services" },
{ label: "Doktorlar", href: "#team" },
{ label: "Tedaviler", href: "/tedaviler" },
{ label: "Doktorlar", href: "/doktorlar" },
],
},
{
title: "Bilgiler",
items: [
title: "Bilgiler", items: [
{ label: "Gizlilik Politikası", href: "#" },
{ label: "Kullanım Şartları", href: "#" },
{ label: "İletişim", href: "#contact" },
{ label: "Randevu Al", href: "#contact" },
{ label: "İletişim", href: "/iletisim" },
{ label: "Randevu Al", href: "/iletisim" },
],
},
{
title: "İletişim",
items: [
title: "İletişim", items: [
{ label: "Telefon: +90 555 123 4567", href: "tel:+905551234567" },
{ label: "Email: info@kanarya-dis.com", href: "mailto:info@kanarya-dis.com" },
{ label: "Adres: Kanarya Mah., Küçükçekmece, İstanbul", href: "#" },
@@ -61,7 +57,6 @@ export default function AboutPage() {
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
@@ -71,71 +66,45 @@ export default function AboutPage() {
/>
</div>
{/* About Section - Hakkımızda */}
<div id="about" data-section="about">
<TestimonialAboutCard
tag="Biz Kimiz"
tag="Kanarya Hakkında"
tagIcon={Heart}
title="Diş Hekiminden Korkuyorsanız Doğru Yerdesiniz"
description="Hastalarımızın Güveni"
subdescription="Kanarya Polikliniği - Küçükçekmece"
icon={Shield}
imageSrc="http://img.b2bpic.net/free-photo/i-always-feel-relieved-after-session-with-you_637285-9953.jpg?_wi=2"
imageAlt="Samimi doktor-hasta iletişimi"
title="Diş Sağlığında Güven ve Konfor"
description="Kanarya'nın Hikayesi"
subdescription="Kanarya ız ve Diş Sağlığı Polikliniği"
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/i-always-feel-relieved-after-session-with-you_637285-9953.jpg"
imageAlt="Kanarya polikliniği tanıtımı"
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Team Section */}
<div id="team" data-section="team">
<TeamCardTwo
title="Doktorlarımız"
description="Sektörün deneyimli ve empatik profesyonelleri"
tag="Uzman Ekip"
tagIcon={Users}
members={[
<div id="why-us" data-section="why-us">
<MetricCardOne
metrics={[
{
id: "1",
name: "Dr. Kerim Başaran",
role: "Diş Hekimi & Kurucu",
description: "Semtin güvenilir ve tecrübeli diş hekimlerinden biridir. Yılların deneyimiyle hastalarına güven veren bir yaklaşımı vardır. Dr. Başaran, modern diş hekimliğinin en son gelişmelerini hastalarına sunmak için sürekli eğitim almaktadır.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-holding-stethoscope_23-2148285702.jpg?_wi=2",
socialLinks: [{ icon: Globe, url: "https://kanarya-dis.com" }],
id: "1", value: "100%", title: "Hasta Memnuniyeti", description: "Hastalarımız bizi seviyorlar ve tavsiye ediyorlar", icon: Heart,
},
{
id: "2",
name: "Dr. Enes Yılmaz",
role: "Diş Hekimi",
description: "Hastalarla kurduğu samimi iletişim ve özellikle diş hekimi korkusu yaşayan hastalara yaklaşımıyla bilinir. Hastanın konforunu her zaman ön planda tutar. Dr. Yılmaz, hassas ve korkulu hastalarla çalışmak konusunda uzmanlaşmıştır.",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-young-bald-male-doctor-wearing-medical-robe-stethoscope-showing-you-gesture-isolated-blue-background_141793-63106.jpg?_wi=2",
socialLinks: [{ icon: Globe, url: "https://kanarya-dis.com" }],
id: "2", value: "20+", title: "Yıl Deneyim", description: "Semte ve hastalarına güven veren tecrübe", icon: Award,
},
{
id: "3", value: "5000+", title: "Mutlu Hasta", description: "Güvenerek sağlığı teslim eden hastalar", icon: Smile,
},
]}
animationType="slide-up"
title="Neden Kanarya?"
description="Kaliteli hizmet ve profesyonel yaklaşım"
tag="Kalite Standartları"
tagIcon={Trophy}
textboxLayout="default"
gridVariant="two-columns-alternating-heights"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
/>
</div>
{/* Clinic Experience Section */}
<div id="clinic-experience" data-section="clinic-experience">
<TestimonialAboutCard
tag="Klinik Tasarımı"
tagIcon={Heart}
title="Konforlu ve Modern Klinik Deneyimi"
description="Rahat Ortam"
subdescription="Kanarya Polikliniği"
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/empty-startup-coworking-space-with-office-workspaces-computers-professional-business-space-company-department-spacious-agency-building-interior-modern-executive-environment_482257-67835.jpg?_wi=2"
imageAlt="Modern klinik bekleme alanı"
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactCTA
tag="Hemen İletişime Geçin"
@@ -143,7 +112,7 @@ export default function AboutPage() {
title="Sağlıklı Bir Gülüş İçin İlk Adımı Atın"
description="Randevu almak veya sorularınız için bize ulaşın. Kanarya ekibi size yardımcı olmaktan mutlu olacaktır."
buttons={[
{ text: "Randevu Talep Et", href: "#contact" },
{ text: "Randevu Talep Et", href: "/iletisim" },
{ text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567" },
]}
background={{ variant: "plain" }}
@@ -151,7 +120,6 @@ export default function AboutPage() {
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBase
logoText="Kanarya Diş Sağlığı"
@@ -161,4 +129,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -4,30 +4,28 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Phone, Mail, MapPin } from "lucide-react";
import { Phone, MapPin, Mail } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Ana Sayfa", id: "/" },
{ name: "Hakkımızda", id: "#about" },
{ name: "Tedaviler", id: "#services" },
{ name: "Doktorlar", id: "#team" },
{ name: "Hakkımızda", id: "/hakkimizda" },
{ name: "Tedaviler", id: "/tedaviler" },
{ name: "Doktorlar", id: "/doktorlar" },
{ name: "İletişim", id: "/iletisim" },
];
const footerColumns = [
{
title: "Hızlı Linkler",
items: [
title: "Hızlı Linkler", items: [
{ label: "Ana Sayfa", href: "/" },
{ label: "Hakkımızda", href: "#about" },
{ label: "Tedaviler", href: "#services" },
{ label: "Doktorlar", href: "#team" },
{ label: "Hakkımızda", href: "/hakkimizda" },
{ label: "Tedaviler", href: "/tedaviler" },
{ label: "Doktorlar", href: "/doktorlar" },
],
},
{
title: "Bilgiler",
items: [
title: "Bilgiler", items: [
{ label: "Gizlilik Politikası", href: "#" },
{ label: "Kullanım Şartları", href: "#" },
{ label: "İletişim", href: "/iletisim" },
@@ -35,8 +33,7 @@ export default function ContactPage() {
],
},
{
title: "İletişim",
items: [
title: "İletişim", items: [
{ label: "Telefon: +90 555 123 4567", href: "tel:+905551234567" },
{ label: "Email: info@kanarya-dis.com", href: "mailto:info@kanarya-dis.com" },
{ label: "Adres: Kanarya Mah., Küçükçekmece, İstanbul", href: "#" },
@@ -67,62 +64,28 @@ export default function ContactPage() {
/>
</div>
<div id="contact" data-section="contact" className="mx-auto px-4 md:px-6">
<div id="contact" data-section="contact">
<ContactCTA
tag="Hemen İletişime Geçin"
tag="Bize Ulaşın"
tagIcon={Phone}
title="Sağlıklı Bir Gülüş İçin İlk Adımı Atın"
title="Hemen İletişime Geçin"
description="Randevu almak veya sorularınız için bize ulaşın. Kanarya ekibi size yardımcı olmaktan mutlu olacaktır."
buttons={[
{
text: "Randevu Talep Et",
href: "/iletisim",
},
{
text: "WhatsApp ile Yazın",
href: "https://wa.me/905551234567",
},
{ text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567" },
{ text: "Telefon Ara", href: "tel:+905551234567" },
]}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="contact-info" data-section="contact-info" className="mx-auto px-4 md:px-6 py-16 md:py-24">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<div className="flex flex-col items-center text-center">
<div className="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center mb-4">
<Phone className="w-8 h-8 text-white" />
</div>
<h3 className="text-xl font-bold mb-2">Telefon</h3>
<p className="text-foreground/70">+90 555 123 4567</p>
</div>
<div className="flex flex-col items-center text-center">
<div className="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center mb-4">
<Mail className="w-8 h-8 text-white" />
</div>
<h3 className="text-xl font-bold mb-2">Email</h3>
<p className="text-foreground/70">info@kanarya-dis.com</p>
</div>
<div className="flex flex-col items-center text-center">
<div className="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center mb-4">
<MapPin className="w-8 h-8 text-white" />
</div>
<h3 className="text-xl font-bold mb-2">Adres</h3>
<p className="text-foreground/70">Kanarya Mah., Küçükçekmece, İstanbul</p>
</div>
</div>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={footerColumns}
logoText="Kanarya Diş Sağlığı"
copyrightText="© 2025 Kanarya Ağız ve Diş Sağlığı Polikliniği. Tüm Hakları Saklıdır."
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}
}

View File

@@ -1,17 +1,14 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Kanarya Diş Sağlığı", description: "Kanarya ız ve DSağlığı Polikliniği - Güvenilir, Profesyonel Diş Hizmeti"};
title: "Kanarya ız ve Diş Sağlığı Polikliniği", description: "Modern teknoloji ve deneyimli doktorlarla kaliteli dsağlığı hizmeti. Kanarya'da güven, konfor ve uzmanlık."};
export default function RootLayout({
children,
@@ -19,9 +16,20 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="tr">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<html lang="tr" suppressHydrationWarning>
<body className={`${inter.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
`,
}}
/>
<script
dangerouslySetInnerHTML={{

View File

@@ -17,9 +17,9 @@ export default function HomePage() {
const navItems = [
{ name: "Ana Sayfa", id: "/" },
{ name: "Hakkımızda", id: "/hakkimizda" },
{ name: "Tedaviler", id: "services" },
{ name: "Doktorlar", id: "team" },
{ name: "İletişim", id: "contact" },
{ name: "Tedaviler", id: "/tedaviler" },
{ name: "Doktorlar", id: "/doktorlar" },
{ name: "İletişim", id: "/iletisim" },
];
const footerColumns = [
@@ -27,16 +27,16 @@ export default function HomePage() {
title: "Hızlı Linkler", items: [
{ label: "Ana Sayfa", href: "/" },
{ label: "Hakkımızda", href: "/hakkimizda" },
{ label: "Tedaviler", href: "#services" },
{ label: "Doktorlar", href: "#team" },
{ label: "Tedaviler", href: "/tedaviler" },
{ label: "Doktorlar", href: "/doktorlar" },
],
},
{
title: "Bilgiler", items: [
{ label: "Gizlilik Politikası", href: "#" },
{ label: "Kullanım Şartları", href: "#" },
{ label: "İletişim", href: "#contact" },
{ label: "Randevu Al", href: "#contact" },
{ label: "İletişim", href: "/iletisim" },
{ label: "Randevu Al", href: "/iletisim" },
],
},
{
@@ -85,16 +85,19 @@ export default function HomePage() {
testimonials={[
{
name: "Kader Kurtcebe", handle: "Hasta", testimonial: "Hayatımda dişten çektiğim kadar hiçbir şeyden çekmedim. Normalde diş koltuğuna oturunca bayılırdım. Enes Hoca sayesinde korkumu yendim.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-suffering-from-infertility_23-2149430773.jpg"},
imageSrc: "http://img.b2bpic.net/free-photo/couple-suffering-from-infertility_23-2149430773.jpg"
},
{
name: "Hanne Solmaz", handle: "Hasta", testimonial: "Kanarya ağız ve diş sağlığına hizmetlerinden dolayı teşekkür ederim. İlgili ve profesyonel şekilde tedavim tamamlandı.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg"},
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg"
},
{
name: "Memnun Hasta", handle: "Hasta", testimonial: "Her detayı özenle planlanmış çok güzel bir diş polikliniği. Ekip çok ilgili ve samimi.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-cozy-office_23-2149739353.jpg"},
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-cozy-office_23-2149739353.jpg"
},
]}
buttons={[
{ text: "Randevu Al", href: "#contact" },
{ text: "Randevu Al", href: "/iletisim" },
{ text: "WhatsApp İletişim", href: "https://wa.me/905551234567" },
]}
useInvertedBackground={false}
@@ -127,16 +130,20 @@ export default function HomePage() {
features={[
{
id: "1", title: "İmplant Tedavisi", tags: ["Estetik", "Dayanıklı"],
imageSrc: "http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67307.jpg?_wi=1"},
imageSrc: "http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67307.jpg?_wi=1"
},
{
id: "2", title: "Diş Beyazlatma", tags: ["Hızlı", "Etkili"],
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-with-toothy-smile_1301-2346.jpg?_wi=1"},
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-with-toothy-smile_1301-2346.jpg?_wi=1"
},
{
id: "3", title: "Ortodonti", tags: ["Hizalama", "Güzel Gülüş"],
imageSrc: "http://img.b2bpic.net/free-photo/dental-procedure-installing-braces-close-up-dentistry-braces-teeth_169016-67460.jpg?_wi=1"},
imageSrc: "http://img.b2bpic.net/free-photo/dental-procedure-installing-braces-close-up-dentistry-braces-teeth_169016-67460.jpg?_wi=1"
},
{
id: "4", title: "Estetik Diş Hekimliği", tags: ["Tasarım", "Profesyonel"],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-caucasian-girl-with-bun-brunette-hair-tattoo-her-shoulder-stripped-top-attractive-female-smiling-with-all-her-white-teeth-putting-her-hand-chest-endless-joy_273609-5710.jpg?_wi=1"},
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-caucasian-girl-with-bun-brunette-hair-tattoo-her-shoulder-stripped-top-attractive-female-smiling-with-all-her-white-teeth-putting-her-hand-chest-endless-joy_273609-5710.jpg?_wi=1"
},
]}
animationType="slide-up"
textboxLayout="default"
@@ -177,17 +184,23 @@ export default function HomePage() {
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Kader Kurtcebe", date: "Tarih: 15 Aralık 2024", title: "Korkumu Yendim", quote: "Hayatımda dişten çektiğim kadar hiçbir şeyden çekmedim. Normalde diş koltuğuna oturunca bayılırdım. Enes Hoca sayesinde korkumu yendim. İşini para için yapmayan nadir doktorlardan.", tag: "Hasta Deneyimi", avatarSrc: "http://img.b2bpic.net/free-photo/couple-suffering-from-infertility_23-2149430773.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=1"},
id: "1", name: "Kader Kurtcebe", date: "Tarih: 15 Aralık 2024", title: "Korkumu Yendim", quote: "Hayatımda dişten çektiğim kadar hiçbir şeyden çekmedim. Normalde diş koltuğuna oturunca bayılırdım. Enes Hoca sayesinde korkumu yendim. İşini para için yapmayan nadir doktorlardan.", tag: "Hasta Deneyimi", avatarSrc: "http://img.b2bpic.net/free-photo/couple-suffering-from-infertility_23-2149430773.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=1"
},
{
id: "2", name: "Hanne Solmaz", date: "Tarih: 10 Aralık 2024", title: "Profesyonel ve İlgili", quote: "Kanarya ağız ve diş sağlığına hizmetlerinden dolayı teşekkür ederim. İlgili ve profesyonel şekilde tedavim tamamlandı. Ekip çok samimi ve sabrıydı.", tag: "Hasta Memnuniyeti", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=2"},
id: "2", name: "Hanne Solmaz", date: "Tarih: 10 Aralık 2024", title: "Profesyonel ve İlgili", quote: "Kanarya ağız ve diş sağlığına hizmetlerinden dolayı teşekkür ederim. İlgili ve profesyonel şekilde tedavim tamamlandı. Ekip çok samimi ve sabrıydı.", tag: "Hasta Memnuniyeti", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=2"
},
{
id: "3", name: "Murat Demir", date: "Tarih: 5 Aralık 2024", title: "Detaylı ve Özenli", quote: "Her detayı özenle planlanmış çok güzel bir diş polikliniği. Doktor ve yardımcılar çok ilgili ve samimi. Tedavi sonrası danışmanlık da çok faydalı oldu.", tag: "Operasyon Başarısı", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-cozy-office_23-2149739353.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=3"},
id: "3", name: "Murat Demir", date: "Tarih: 5 Aralık 2024", title: "Detaylı ve Özenli", quote: "Her detayı özenle planlanmış çok güzel bir diş polikliniği. Doktor ve yardımcılar çok ilgili ve samimi. Tedavi sonrası danışmanlık da çok faydalı oldu.", tag: "Operasyon Başarısı", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-cozy-office_23-2149739353.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=3"
},
{
id: "4", name: "Ayşe Kara", date: "Tarih: 1 Aralık 2024", title: "Şeffaf Tedavi", quote: "Gereksiz işlem yapılmıyor, her şey açıkça anlatılıyor. Doktor hemşiresi çok ilgili. Sterilite standartları çok yüksek. Kesinlikle tavsiye ederim.", tag: "Kalite Taahhüdü", avatarSrc: "http://img.b2bpic.net/free-photo/closeup-goodlooking-tender-friendly-pretty-middleaged-30s-woman-extend-arm-hold-camera-hand-smiling-broadly-taking-selfie-photographing-record-videomessage-calling-husband_176420-51274.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=4"},
id: "4", name: "Ayşe Kara", date: "Tarih: 1 Aralık 2024", title: "Şeffaf Tedavi", quote: "Gereksiz işlem yapılmıyor, her şey açıkça anlatılıyor. Doktor hemşiresi çok ilgili. Sterilite standartları çok yüksek. Kesinlikle tavsiye ederim.", tag: "Kalite Taahhüdü", avatarSrc: "http://img.b2bpic.net/free-photo/closeup-goodlooking-tender-friendly-pretty-middleaged-30s-woman-extend-arm-hold-camera-hand-smiling-broadly-taking-selfie-photographing-record-videomessage-calling-husband_176420-51274.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=4"
},
{
id: "5", name: "Ercan Çetin", date: "Tarih: 25 Kasım 2024", title: "Modern Teknoloji", quote: "Klinik çok modern ve temiz. Teknoloji çok gelişmiş. Doktor benim sorunumu çok iyi analiz etti. Tedavi süreci çok rahat geçti.", tag: "Teknoloji Güveni", avatarSrc: "http://img.b2bpic.net/free-photo/couple-suffering-from-infertility_23-2149430773.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=5"},
id: "5", name: "Ercan Çetin", date: "Tarih: 25 Kasım 2024", title: "Modern Teknoloji", quote: "Klinik çok modern ve temiz. Teknoloji çok gelişmiş. Doktor benim sorunumu çok iyi analiz etti. Tedavi süreci çok rahat geçti.", tag: "Teknoloji Güveni", avatarSrc: "http://img.b2bpic.net/free-photo/couple-suffering-from-infertility_23-2149430773.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=5"
},
{
id: "6", name: "Zeynep Yıldız", date: "Tarih: 20 Kasım 2024", title: "Aileme de Tavsiye Ettim", quote: "Kanarya'da tedavim çok iyiydi. Doktor çok sakin ve rahatlatıcı. Aileme ve arkadaşlarıma tavsiye ettim. Hepsi de memnun kaldı.", tag: "Tavsiye Edilen", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=6"},
id: "6", name: "Zeynep Yıldız", date: "Tarih: 20 Kasım 2024", title: "Aileme de Tavsiye Ettim", quote: "Kanarya'da tedavim çok iyiydi. Doktor çok sakin ve rahatlatıcı. Aileme ve arkadaşlarıma tavsiye ettim. Hepsi de memnun kaldı.", tag: "Tavsiye Edilen", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-is-smiling-by-touching-her-cheeks-with-forefinger-white-background_176474-114757.jpg?_wi=6"
},
]}
/>
</div>
@@ -239,9 +252,9 @@ export default function HomePage() {
tag="Hemen İletişime Geçin"
tagIcon={Phone}
title="Sağlıklı Bir Gülüş İçin İlk Adımı Atın"
description="Telefon: +90 555 123 4567\n\nRandevu almak veya sorularınız için bize ulaşın. Kanarya ekibi size yardımcı olmaktan mutlu olacaktır."
description="Randevu almak veya sorularınız için bize ulaşın. Kanarya ekibi size yardımcı olmaktan mutlu olacaktır."
buttons={[
{ text: "Randevu Talep Et", href: "#contact" },
{ text: "Randevu Talep Et", href: "/iletisim" },
{ text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567" },
]}
background={{ variant: "plain" }}

View File

@@ -6,13 +6,12 @@ import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwe
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
import { Sparkles, Trophy, Phone, Heart, Award, Smile } from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Ana Sayfa", id: "/" },
{ name: "Hakkımızda", id: "/about" },
{ name: "Hakkımızda", id: "/hakkimizda" },
{ name: "Tedaviler", id: "/tedaviler" },
{ name: "Doktorlar", id: "/doktorlar" },
{ name: "İletişim", id: "/iletisim" },
@@ -22,9 +21,9 @@ export default function ServicesPage() {
{
title: "Hızlı Linkler", items: [
{ label: "Ana Sayfa", href: "/" },
{ label: "Hakkımızda", href: "about" },
{ label: "Tedaviler", href: "services" },
{ label: "Doktorlar", href: "team" },
{ label: "Hakkımızda", href: "/hakkimizda" },
{ label: "Tedaviler", href: "/tedaviler" },
{ label: "Doktorlar", href: "/doktorlar" },
],
},
{
@@ -60,10 +59,7 @@ export default function ServicesPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems.map((item) => ({
name: item.name,
id: item.id.startsWith("/") ? item.id : `#${item.id}`,
}))}
navItems={navItems}
brandName="Kanarya"
bottomLeftText="Küçükçekmece, İstanbul"
bottomRightText="info@kanarya-dis.com"
@@ -75,20 +71,20 @@ export default function ServicesPage() {
features={[
{
id: "1", title: "İmplant Tedavisi", tags: ["Estetik", "Dayanıklı"],
imageSrc:
"http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67307.jpg?_wi=2", imageAlt: "Implant tedavisi görseli"},
imageSrc: "http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67307.jpg?_wi=2", imageAlt: "Implant tedavisi görseli"
},
{
id: "2", title: "Diş Beyazlatma", tags: ["Hızlı", "Etkili"],
imageSrc:
"http://img.b2bpic.net/free-photo/cheerful-girl-with-toothy-smile_1301-2346.jpg?_wi=2", imageAlt: "Diş beyazlatma tedavisi"},
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-girl-with-toothy-smile_1301-2346.jpg?_wi=2", imageAlt: "Diş beyazlatma tedavisi"
},
{
id: "3", title: "Ortodonti", tags: ["Hizalama", "Güzel Gülüş"],
imageSrc:
"http://img.b2bpic.net/free-photo/dental-procedure-installing-braces-close-up-dentistry-braces-teeth_169016-67460.jpg?_wi=2", imageAlt: "Ortodonti tedavisi"},
imageSrc: "http://img.b2bpic.net/free-photo/dental-procedure-installing-braces-close-up-dentistry-braces-teeth_169016-67460.jpg?_wi=2", imageAlt: "Ortodonti tedavisi"
},
{
id: "4", title: "Estetik Diş Hekimliği", tags: ["Tasarım", "Profesyonel"],
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-happy-caucasian-girl-with-bun-brunette-hair-tattoo-her-shoulder-stripped-top-attractive-female-smiling-with-all-her-white-teeth-putting-her-hand-chest-endless-joy_273609-5710.jpg?_wi=2", imageAlt: "Estetik diş tedavisi"},
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-caucasian-girl-with-bun-brunette-hair-tattoo-her-shoulder-stripped-top-attractive-female-smiling-with-all-her-white-teeth-putting-her-hand-chest-endless-joy_273609-5710.jpg?_wi=2", imageAlt: "Estetik diş tedavisi"
},
]}
animationType="slide-up"
title="Tedavilerimiz"
@@ -131,10 +127,8 @@ export default function ServicesPage() {
title="Sağlıklı Bir Gülüş İçin İlk Adımı Atın"
description="Randevu almak veya sorularınız için bize ulaşın. Kanarya ekibi size yardımcı olmaktan mutlu olacaktır."
buttons={[
{
text: "Randevu Talep Et", href: "/iletisim"},
{
text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567"},
{ text: "Randevu Talep Et", href: "/iletisim" },
{ text: "WhatsApp ile Yazın", href: "https://wa.me/905551234567" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -150,4 +144,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}