MASSETER BOTOKSU BURSA

10.05.2026
import { useState } from "react"; const slides = [ { id: 1, type: "hook", tag: "BİLİYOR MUYDUNUZ?", headline: "Yüzünüz\nNeden Bu\nKadar Geniş\nGörünüyor?", sub: "Masseter kası büyüklüğü bunu etkiliyor olabilir.", }, { id: 2, type: "context", tag: "SORUN", headline: "Masseter Kası\nNedir?", body: "Masseter, çene eklemini hareket ettiren güçlü bir yüz kasıdır. Stres, diş gıcırdatma veya genetik nedenlerle aşırı gelişebilir ve yüze daha kare bir görünüm verebilir.", icon: "◈", }, { id: 3, type: "value", tag: "NEDEN OLUŞUR?", points: [ { icon: "◆", text: "Kronik stres ve diş sıkma" }, { icon: "◆", text: "Gece diş gıcırdatma (bruksizm)" }, { icon: "◆", text: "Sert gıdaların aşırı tüketimi" }, { icon: "◆", text: "Genetik yatkınlık" }, ], }, { id: 4, type: "value2", tag: "ÇÖZÜM", headline: "Masseter\nBotoksu", body: "Kas içine uygulanan botoks ile masseter kası zamanla incelir. Yüz daha oval bir görünüm kazanabilir.", highlight: "Doğal · Güvenli · Etkili", }, { id: 5, type: "benefits", tag: "AVANTAJLAR", points: [ { icon: "✦", text: "15 dakikada uygulanır" }, { icon: "✦", text: "Günlük hayata hızlı dönüş" }, { icon: "✦", text: "Daha ince yüz hattı görünümü" }, { icon: "✦", text: "Diş sıkma şikayetlerinde rahatlama" }, ], }, { id: 6, type: "cta", tag: "RANDEVU", headline: "Daha İnce\nBir Yüz Hattı\nİçin Hazır\nMısınız?", cta1: "DM'den Bilgi Alın", cta2: "@drmehmetguncn", location: "Bursa · Çekirge Kalp Aritmi Hastanesi", }, ]; const GOLD = "#C9A96E"; const GOLD_LIGHT = "#E8D5A3"; const BLACK = "#0A0A0A"; const OFF_WHITE = "#F5F0E8"; export default function MasseterCarousel() { const [current, setCurrent] = useState(0); const prev = () => { setCurrent((c) => (c - 1 + slides.length) % slides.length); }; const next = () => { setCurrent((c) => (c + 1) % slides.length); }; const slide = slides[current]; return (
{/* Background Gradient */}
{/* Slide Number */}
{String(current + 1).padStart(2, "0")} /{" "} {String(slides.length).padStart(2, "0")}
{/* Watermark */}
DR. MEHMET GÜNCAN · MEDİKAL ESTETİK
{/* Content */}
{/* TAG */}
{slide.tag}
{/* Gold Line */}
{/* HOOK */} {slide.type === "hook" && (

{slide.headline.split("\n").map((line, i) => ( {line} ))}

{slide.sub}

)} {/* CONTEXT */} {slide.type === "context" && (
{slide.icon}

{slide.headline.split("\n").map((line, i) => ( {line} ))}

{slide.body}

)} {/* VALUE */} {slide.type === "value" && (
{slide.points.map((p, i) => (
{p.icon} {p.text}
))}
)} {/* VALUE2 */} {slide.type === "value2" && (

{slide.headline.split("\n").map((line, i) => ( {line} ))}

{slide.body}

{slide.highlight}
)} {/* BENEFITS */} {slide.type === "benefits" && (
{slide.points.map((p, i) => (
{p.icon} {p.text}
))}
)} {/* CTA */} {slide.type === "cta" && (

{slide.headline.split("\n").map((line, i) => ( {line} ))}

{slide.cta1}
{slide.cta2}

{slide.location}

)}
{/* Navigation */}
{slides.map((_, i) => (
setCurrent(i)} style={{ width: i === current ? "20px" : "6px", height: "6px", borderRadius: "10px", background: i === current ? GOLD : `${GOLD}44`, transition: "0.3s", cursor: "pointer", }} /> ))}
); }
Share
Ücretsiz Ön Bilgi Al