From aced8893ce0ab4a69f13442c935226ea7daaca24 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:53:50 +0000 Subject: [PATCH] Add src/app/services/page.tsx --- src/app/services/page.tsx | 194 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 194 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..a440841 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,194 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Sparkles } from "lucide-react"; + +export default function ServicesPage() { + const handleCallClick = () => { + window.location.href = "tel:+919876543210"; + }; + + const handleEmailClick = () => { + window.location.href = "mailto:info@trusmile.com"; + }; + + const handleBookAppointment = () => { + const appointmentSection = document.getElementById("services-section"); + if (appointmentSection) { + appointmentSection.scrollIntoView({ behavior: "smooth" }); + } + }; + + const handleNavigateToHome = () => { + window.location.href = "/"; + }; + + const handleNavigateToSection = (sectionId: string) => { + const section = document.getElementById(sectionId); + if (section) { + section.scrollIntoView({ behavior: "smooth" }); + } + }; + + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1