import React from "react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Textarea } from "@/components/ui/textarea"; interface Contact2Props { title?: string; description?: string; phone?: string; email?: string; web?: { label: string; url: string }; } const Contact = ({ title = "Get In Touch", description = "Have questions about our services or need help with booking? We're here to help! Reach out to us and we'll get back to you as soon as possible.", phone = "(+63) 917-123-4567", email = "info@dentalucare.com", web = { label: "dentalucare.com", url: "https://dentalucare.com" }, }: Contact2Props) => { return (

{title}

{description}

Contact Details