Add src/app/services/page.tsx

This commit is contained in:
2026-03-07 13:05:27 +00:00
parent 8b9025fa3f
commit 05397429cf

88
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,88 @@
"use client";
import { Stethoscope } from "lucide-react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Rehoboth Dental"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Book Appointment", href: "/book-appointment" }}
animateOnLoad={true}
/>
</div>
<div id="services" data-section="services">
<FeatureCardEight
title="Our Comprehensive Dental Services"
description="Explore our full range of professional dental services designed to meet all your oral health needs. Each service is provided by our experienced team using state-of-the-art technology and techniques."
tag="Complete Dental Solutions"
tagIcon={Stethoscope}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
id: 1,
title: "General Dental Checkups", description: "Regular preventive examinations to maintain optimal oral health, identify issues early, and establish a foundation for long-term dental wellness", imageSrc: "http://img.b2bpic.net/free-photo/young-female-dentist-showing-patient-dental-xray-dentistry-concept_169016-67181.jpg?_wi=2", imageAlt: "General dental checkup"
},
{
id: 2,
title: "Professional Teeth Cleaning", description: "Deep cleaning to remove plaque, tartar, and surface stains for a brighter, healthier smile. Our hygienists use gentle techniques and modern equipment", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042868.jpg?_wi=2", imageAlt: "Professional teeth cleaning"
},
{
id: 3,
title: "Tooth Filling & Restoration", description: "Restoration of decayed teeth with durable, tooth-colored filling materials that blend seamlessly with your natural teeth", imageSrc: "http://img.b2bpic.net/free-photo/jar-cotton-rolls-orthodontic-instruments-dental-procedure_651396-3108.jpg", imageAlt: "Tooth filling restoration"
},
{
id: 4,
title: "Tooth Extraction", description: "Safe and comfortable extraction procedures when necessary, performed with precision and care to ensure minimal discomfort", imageSrc: "http://img.b2bpic.net/free-photo/dentist-assistant-surgery-dental-clinic_140725-7688.jpg?_wi=2", imageAlt: "Professional tooth extraction"
},
{
id: 5,
title: "Braces & Orthodontics", description: "Professional teeth alignment and correction services to help you achieve the smile you've always wanted. Various options available", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-teenage-girl-smiling-white-background-isolated_169016-48880.jpg?_wi=2", imageAlt: "Orthodontic braces"
},
{
id: 6,
title: "Professional Teeth Whitening", description: "Cosmetic brightening treatment to enhance your smile and boost your confidence with results that last. Safe and effective procedures", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-young-woman_158538-3962.jpg?_wi=2", imageAlt: "Professional teeth whitening"
},
{
id: 7,
title: "Emergency Dental Care", description: "24/7 available urgent care services for dental emergencies. Call us immediately for pain relief and emergency treatment", imageSrc: "http://img.b2bpic.net/free-photo/female-dentist-treating-her-patient-teeth_8353-1655.jpg", imageAlt: "Emergency dental care"
},
]}
buttons={[{ text: "Book Your Service", href: "/book-appointment" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Rehoboth Dental"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}