From e41ceb0dae18bc1af881eb4e1ef7c0f844164edf Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 07:57:16 +0000 Subject: [PATCH] Add src/app/services/page.tsx --- src/app/services/page.tsx | 84 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 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..9d03e5c --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,84 @@ +"use client"; +import { ThemeProvider } from "next-themes"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function ServicesPage() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Services', id: '/services' } + ]; + + const services = [ + { + id: 's1', + name: 'General Check-up', + price: '$99', + imageSrc: 'https://images.unsplash.com/photo-1579684385137-d2e0717208d2?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', + imageAlt: 'General Check-up' + }, + { + id: 's2', + name: 'Dental Care', + price: '$120', + imageSrc: 'https://images.unsplash.com/photo-1599026466632-a567636e0996?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', + imageAlt: 'Dental Care' + }, + { + id: 's3', + name: 'Pediatric Services', + price: '$110', + imageSrc: 'https://images.unsplash.com/photo-1576091160418-e39b65e90069?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', + imageAlt: 'Pediatric Services' + }, + { + id: 's4', + name: 'Dermatology', + price: '$150', + imageSrc: 'https://images.unsplash.com/photo-1591130635956-fcf97f374776?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', + imageAlt: 'Dermatology' + }, + { + id: 's5', + name: 'Cardiology', + price: '$200', + imageSrc: 'https://images.unsplash.com/photo-1582719266395-5d55aa6ce124?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', + imageAlt: 'Cardiology' + } + ]; + + return ( + + +
+
+ +
+
+ +
+ ); +}