"use client"; import { Check } from "lucide-react"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import Link from "next/link"; import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; interface Service { name: string; price: string; description?: string; } interface ServiceCategory { id: string; title: string; badge: string; services: Service[]; } import React, { useState } from "react"; const Pricing = () => { const [showRequiredDialog, setShowRequiredDialog] = useState(false); const serviceCategories: ServiceCategory[] = [ { id: "basic", title: "Basic Services", badge: "Essential", services: [ { name: "Dental Consultation / Checkup", price: "₱500 – ₱1,500", description: "Basic dental examination to check overall condition of teeth and gums", }, { name: "Oral Prophylaxis (Cleaning)", price: "₱1,200 – ₱3,000", description: "Regular teeth cleaning, recommended every 6 months", }, { name: "Tooth X-Ray", price: "₱700 – ₱2,500+", description: "Depends on type (periapical, panoramic, etc.)", }, { name: "Simple Tooth Extraction", price: "₱1,500 – ₱5,000", description: "Basic tooth extraction procedure", }, { name: "Deep Cleaning / Scaling and Root Planing", price: "₱3,000 – ₱10,000+", description: "For early signs of gum disease, deeper cleaning procedure", }, ], }, { id: "fillings", title: "Dental Fillings", badge: "Restorative", services: [ { name: "Amalgam Filling (Silver)", price: "₱800 – ₱2,500", description: "Traditional silver-colored filling material", }, { name: "Composite Filling (Tooth-colored)", price: "₱1,500 – ₱4,500+", description: "Natural-looking tooth-colored filling", }, { name: "Ceramic/Gold Filling", price: "₱5,000 – ₱15,000+", description: "Premium filling materials for durability", }, ], }, { id: "advanced", title: "Advanced Treatments", badge: "Popular", services: [ { name: "Surgical/Impacted Tooth Extraction", price: "₱10,000 – ₱30,000+", description: "Complex extraction for impacted teeth", }, { name: "Root Canal Treatment", price: "₱5,000 – ₱20,000+", description: "Treatment for infected tooth pulp, cleaned and sealed", }, { name: "Dental Crowns (Basic - Metal or PFM)", price: "₱8,000 – ₱20,000+", description: "Cap for damaged tooth, metal or porcelain-fused-to-metal", }, { name: "Dental Crowns (Premium - Zirconia, Emax)", price: "₱30,000 – ₱45,000+", description: "High-quality aesthetic crowns", }, { name: "Teeth Whitening (Bleaching)", price: "₱9,000 – ₱30,000+", description: "Laser or in-clinic whitening procedure", }, ], }, { id: "replacement", title: "Tooth Replacement", badge: "Restoration", services: [ { name: "Partial Denture", price: "₱10,000 – ₱30,000+", description: "Removable denture for missing teeth", }, { name: "Full Denture", price: "Contact for pricing", description: "Complete denture set, depends on number of teeth", }, { name: "Dental Bridges", price: "₱20,000 – ₱60,000+", description: "Replacement of missing teeth using adjacent teeth", }, { name: "Dental Implants", price: "₱80,000 – ₱150,000+", description: "Permanent tooth replacement using titanium post + crown", }, ], }, { id: "cosmetic", title: "Cosmetic & Orthodontics", badge: "Premium", services: [ { name: "Dental Veneers", price: "₱12,000 – ₱35,000+ per tooth", description: "For aesthetic purposes - straight, white, beautiful teeth", }, { name: "Traditional Metal Braces", price: "₱35,000 – ₱80,000+", description: "Classic metal braces for teeth alignment", }, { name: "Ceramic / Clear Braces", price: "₱100,000 – ₱200,000+", description: "Aesthetic clear or tooth-colored braces", }, ], }, ]; return (

Dental Services & Pricing

Transparent pricing for all your dental needs. Quality dental care at competitive rates.

{serviceCategories.map((category) => ( {category.title} ))} {serviceCategories.map((category) => (
{category.title} {category.badge}
Professional dental services with transparent pricing
{category.services.map((service, index) => (

{service.name}

{service.description && (

{service.description}

)}
{service.price}
))}
))}
Required To Sign In & Sign Up Please sign in or sign up to access this content.
); }; export { Pricing };