10 Commits

Author SHA1 Message Date
3848ae362d Merge version_7 into main
Merge version_7 into main
2026-04-19 15:20:12 +00:00
69fac4cdd4 Update src/app/contact/page.tsx 2026-04-19 15:20:06 +00:00
dd9a8213fa Merge version_7 into main
Merge version_7 into main
2026-04-19 15:19:44 +00:00
250d937fce Update src/app/page.tsx 2026-04-19 15:19:38 +00:00
de58fa1ea0 Add src/app/contact/page.tsx 2026-04-19 15:19:37 +00:00
13fffbe2be Merge version_6 into main
Merge version_6 into main
2026-04-19 15:17:26 +00:00
b02f67e0b0 Update src/app/page.tsx 2026-04-19 15:17:23 +00:00
70f6b4079b Merge version_6 into main
Merge version_6 into main
2026-04-19 15:16:55 +00:00
9dde8c1ae6 Update src/app/page.tsx 2026-04-19 15:16:49 +00:00
86bf936e1b Merge version_5 into main
Merge version_5 into main
2026-04-19 15:15:02 +00:00
2 changed files with 74 additions and 22 deletions

55
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,55 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Hakkımda", id: "about" },
{ name: "Hizmetler", id: "features" },
{ name: "Danışan Yorumları", id: "testimonials" },
{ name: "İletişim", id: "/contact" },
]}
brandName="Betül Arıkan"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Bizimle İletişime Geçin"
description="Sağlık yolculuğunuzda size nasıl yardımcı olabiliriz? Formu doldurun, size en kısa sürede dönüş yapalım."
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: "Mesajınız", rows: 5, required: true }}
useInvertedBackground={false}
/>
</div>
<FooterLogoReveal
logoText="Betül Arıkan"
leftLink={{ text: "Gizlilik Politikası", href: "#" }}
rightLink={{ text: "Kişisel Verilerin Korunması", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -8,6 +8,7 @@ import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/F
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
@@ -39,7 +40,7 @@ export default function LandingPage() {
{
name: "Danışan Yorumları", id: "testimonials"},
{
name: "İletişim", id: "contact"},
name: "İletişim", id: "/contact"},
]}
brandName="Betül Arıkan"
/>
@@ -54,7 +55,7 @@ export default function LandingPage() {
tag="Uzman Diyetisyen"
buttons={[
{
text: "Randevu Al", href: "#contact"},
text: "Randevu Al", href: "/contact"},
]}
mediaItems={[
{
@@ -63,10 +64,6 @@ export default function LandingPage() {
imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-composition-peppers-carrots-garlic-other-vegetables-white-background_140725-141123.jpg", imageAlt: "Fonksiyonel Beslenme"},
{
imageSrc: "http://img.b2bpic.net/free-photo/empty-doctors-workplace-room-with-desk-technology_482257-14017.jpg", imageAlt: "Klinik Ortamı"},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-talking-patient-about-vegetables_23-2148302105.jpg", imageAlt: "Medium shot doctor talking to patient about vegetables"},
{
imageSrc: "http://img.b2bpic.net/free-photo/apple-stethoscope_23-2147612174.jpg", imageAlt: "Apple and stethoscope"},
]}
mediaAnimation="slide-up"
/>
@@ -79,7 +76,7 @@ export default function LandingPage() {
"Fonksiyonel tıp, hastalıkları sadece semptomları bastırmakla değil, kök nedenlerini anlayarak ele alır.", "Beslenme planlarımızı tamamen sizin biyokimyasal ihtiyaçlarınıza ve yaşam tarzınıza göre özelleştiriyoruz.", "Amacımız sadece kilo vermek değil, uzun vadeli ve sürdürülebilir bir sağlık durumuna kavuşmanızı sağlamak."
]}
buttons={[
{ text: "Randevu Al", href: "#contact" }
{ text: "Randevu Al", href: "/contact" }
]}
useInvertedBackground={true}
/>
@@ -152,6 +149,21 @@ export default function LandingPage() {
/>
</div>
<div id="metric-cards" data-section="metric-cards">
<MetricCardThree
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
title="Önemli Göstergeler"
description="Sağlık yolculuğunuzdaki temel metrikler."
metrics={[
{ id: "metric-1", icon: Award, title: "Sertifikalar", value: "15+" },
{ id: "metric-2", icon: Zap, title: "Vaka Çalışması", value: "800+" },
{ id: "metric-3", icon: Shield, title: "Yıllık Deneyim", value: "10+" },
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
animationType="slide-up"
@@ -198,21 +210,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
tag="İletişim"
title="Sağlıklı Bir Yaşam İçin Adım Atın"
description="Detaylı bilgi almak veya randevu oluşturmak için hemen bize ulaşın."
buttons={[
{
text: "WhatsApp Üzerinden İletişime Geç", href: "https://wa.me/905550000000"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Betül Arıkan"