3 Commits

Author SHA1 Message Date
5f749f9343 Update src/app/page.tsx 2026-03-31 17:35:06 +00:00
bed39357e7 Merge version_5 into main
Merge version_5 into main
2026-03-31 17:33:47 +00:00
cebdea66ac Merge version_5 into main
Merge version_5 into main
2026-03-31 17:33:15 +00:00

View File

@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TeamCardOne from '@/components/sections/team/TeamCardOne'; import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Star } from "lucide-react"; import { Star } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -102,36 +102,52 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve <TestimonialCardFifteen
cardAnimation="blur-reveal" testimonial="The clinic experience was absolutely seamless. From the first consultation to my new smile, everything felt professional, clean, and highly personalized. Truly world-class standards."
cardTitle="Patient Success Stories" rating={5}
cardTag="Testimonials" author="Sarah J. - International Patient"
useInvertedBackground={true} avatars={[
testimonials={[ { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978490858-w7sr9u2l.jpg", alt: "Patient 1" },
{ id: "1", name: "Patient A", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-jli695f6.jpg?_wi=2" }, { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978490859-lof8lvtu.jpg", alt: "Patient 2" }
{ id: "2", name: "Patient B", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-k0pyv3oo.jpg?_wi=3" },
{ id: "3", name: "Patient C", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-scbvr5x4.jpg?_wi=3" },
]} ]}
ratingAnimation="blur-reveal"
avatarsAnimation="slide-up"
useInvertedBackground={true}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCenter
useInvertedBackground={false} tag="Contact Us"
title="Transform Your Smile Today"
description="Get in touch for a personalized consultation with our experts in Antalya."
background={{ variant: "rotated-rays-static" }} background={{ variant: "rotated-rays-static" }}
text="Ready for your free consultation? Our team is ready to help you." useInvertedBackground={false}
buttons={[{ text: "Contact Us Now", href: "tel:+905393260707" }]} buttonText="Send Request"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoReveal <FooterBaseReveal
logoText="Oslo Dental" columns={[
leftLink={{ text: "Privacy Policy", href: "#" }} {
rightLink={{ text: "All Rights Reserved", href: "#" }} title: "Clinic", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Services", href: "#services" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]}
copyrightText="© 2024 Oslo Dental Clinic. All Rights Reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }