Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 38550f822a | |||
| 08036b85a9 | |||
| 9391d19415 | |||
| 5f749f9343 | |||
| bed39357e7 | |||
| 40016bb375 | |||
| cebdea66ac | |||
| db0f76c1d3 | |||
| 72606697da | |||
| df32912666 | |||
| 454c1134b5 | |||
| da7b25d8bd | |||
| ee6157b7aa | |||
| 3e44e56c46 |
106
src/app/page.tsx
106
src/app/page.tsx
@@ -2,14 +2,14 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -20,7 +20,7 @@ export default function LandingPage() {
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
cardStyle="glass-depth"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
@@ -31,6 +31,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Results", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
@@ -40,22 +41,20 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
title="OSLO DENTAL CLINIC"
|
||||
description="Premium Dental Care in Antalya You Can Trust. Modern treatments for international patients with comfort, safety, and stunning results."
|
||||
<HeroSplitTestimonial
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Oslo Dental Clinic"
|
||||
description="Experience world-class dental excellence. Combining advanced technology, aesthetic mastery, and personalized care for international patients."
|
||||
tag="Premium Dental Excellence"
|
||||
testimonials={[
|
||||
{ name: "Sarah J.", handle: "@sarahj", testimonial: "Best dental experience ever.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978523050-8p2ryrj5.jpg?_wi=1" }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:+905393260707" },
|
||||
{ text: "Get Free Consultation", href: "#contact" },
|
||||
]}
|
||||
carouselItems={[
|
||||
{ id: "1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-sqnzhizw.jpg?_wi=1", imageAlt: "Clinic interior" },
|
||||
{ id: "2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-k0pyv3oo.jpg?_wi=1", imageAlt: "Clinic equipment" },
|
||||
{ id: "3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-scbvr5x4.jpg?_wi=1", imageAlt: "Patient care" },
|
||||
{ id: "4", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-qz04c4qv.jpg?_wi=1", imageAlt: "Clinic view" },
|
||||
{ id: "5", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-jli695f6.jpg?_wi=1", imageAlt: "Doctor consultation" },
|
||||
{ id: "6", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-sqnzhizw.jpg?_wi=2", imageAlt: "Modern waiting area" },
|
||||
{ text: "Book Consultation", href: "#contact" },
|
||||
{ text: "View Services", href: "#services" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978376669-yq68zcp6.jpg"
|
||||
imageAlt="Clinic aesthetic showcase"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -64,9 +63,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: 1, title: "Dental Implants", description: "High-quality implants to restore your smile and confidence with natural-looking results.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-sqnzhizw.jpg?_wi=3", imageAlt: "Dental Implants" },
|
||||
{ id: 2, title: "Hollywood Smile", description: "A complete smile makeover designed to your facial features and preferences.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-scbvr5x4.jpg?_wi=2", imageAlt: "Hollywood Smile" },
|
||||
{ id: 3, title: "Teeth Whitening", description: "Professional in-office whitening to brighten your teeth and give you a youthful look.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-k0pyv3oo.jpg?_wi=2", imageAlt: "Teeth Whitening" },
|
||||
{ id: 1, title: "Dental Implants", description: "High-quality implants to restore your smile and confidence with natural-looking results.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-sqnzhizw.jpg", imageAlt: "Dental Implants" },
|
||||
{ id: 2, title: "Hollywood Smile", description: "A complete smile makeover designed to your facial features and preferences.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-scbvr5x4.jpg", imageAlt: "Hollywood Smile" },
|
||||
{ id: 3, title: "Teeth Whitening", description: "Professional in-office whitening to brighten your teeth and give you a youthful look.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-k0pyv3oo.jpg", imageAlt: "Teeth Whitening" },
|
||||
]}
|
||||
title="Our Expert Dental Services"
|
||||
description="We offer a wide range of premium dental treatments tailored to your individual needs."
|
||||
@@ -78,7 +77,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{ type: "text", content: "About Oslo Dental Clinic" },
|
||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-jli695f6.jpg", alt: "Dr. Ahmet Göktaş" },
|
||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978523049-iv3gjdlc.jpg", alt: "Dr. Ahmet Göktaş" },
|
||||
]}
|
||||
buttons={[{ text: "Meet Our Team", href: "#team" }]}
|
||||
/>
|
||||
@@ -91,10 +90,10 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{ id: "1", name: "Dr. Ahmet Göktaş", role: "Founder Dentist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-jli695f6.jpg?_wi=2" },
|
||||
{ id: "2", name: "Dr. Irmak Tumen", role: "Dentist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-k0pyv3oo.jpg?_wi=3" },
|
||||
{ id: "3", name: "Spec. Dr. Dt. Elif Coşkuner Uysal", role: "Orthodontist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-scbvr5x4.jpg?_wi=3" },
|
||||
{ id: "4", name: "Support Staff", role: "Patient Care", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-qz04c4qv.jpg?_wi=2" },
|
||||
{ id: "1", name: "Dr. Ahmet Göktaş", role: "Founder Dentist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978523049-iv3gjdlc.jpg" },
|
||||
{ id: "2", name: "Dr. Irmak Tumen", role: "Dentist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978523050-8p2ryrj5.jpg?_wi=2" },
|
||||
{ id: "3", name: "Spec. Dr. Dt. Elif Coşkuner Uysal", role: "Orthodontist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978523050-fv3zyum9.jpg" },
|
||||
{ id: "4", name: "Patient Experience", role: "Clinic Support", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978523050-cdg85d3n.jpg" },
|
||||
]}
|
||||
title="Meet Our Professionals"
|
||||
description="Experienced English-speaking staff dedicated to your safety and comfort."
|
||||
@@ -102,36 +101,49 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Patient A", role: "Patient", company: "UK", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-sqnzhizw.jpg?_wi=4" },
|
||||
{ id: "2", name: "Patient B", role: "Patient", company: "International", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-k0pyv3oo.jpg?_wi=4" },
|
||||
{ id: "3", name: "Patient C", role: "Patient", company: "International", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-scbvr5x4.jpg?_wi=4" },
|
||||
{ id: "4", name: "Patient D", role: "Patient", company: "Norway", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978113902-qz04c4qv.jpg?_wi=3" },
|
||||
<TestimonialCardFifteen
|
||||
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."
|
||||
rating={5}
|
||||
author="Sarah J. - International Patient"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978490858-w7sr9u2l.jpg", alt: "Patient 1" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKtzt4zI2rVQ8hi0S6feQU0q7n/uploaded-1774978490859-lof8lvtu.jpg", alt: "Patient 2" }
|
||||
]}
|
||||
title="Patients Trust Our Care"
|
||||
description="Proven results for patients from around the world."
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
<ContactCenter
|
||||
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" }}
|
||||
text="Ready for your free consultation? Our team is ready to help you."
|
||||
buttons={[{ text: "Contact Us Now", href: "tel:+905393260707" }]}
|
||||
useInvertedBackground={false}
|
||||
buttonText="Send Request"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Oslo Dental"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "All Rights Reserved", href: "#" }}
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user