2 Commits

Author SHA1 Message Date
ef510a8283 Merge version_2 into main
Merge version_2 into main
2026-05-06 05:12:42 +00:00
7755a2008c Update src/app/page.tsx 2026-05-06 05:12:39 +00:00

View File

@@ -7,9 +7,9 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles, Smile, Star, Phone, MapPin } from 'lucide-react';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Sparkles, Smile, Star, MapPin } from 'lucide-react';
export default function SiyaramDentalPage() {
return (
@@ -128,27 +128,28 @@ export default function SiyaramDentalPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Location & Contact"
tagIcon={MapPin}
title="Visit Siyaram Dental Clinic"
description="Located opposite Rohit Honda Showroom, Hatiya Gachhi, Saharsa. Call us today for appointments."
background={{ variant: "plain" }}
<ContactSplitForm
title="Connect With Our Team"
description="We are here to assist with your dental health inquiries. Send us a message and we will respond promptly."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true }
]}
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/west-end-london-map-with-pin_23-2148232425.jpg"
imageAlt="Clinic location visual"
mediaPosition="right"
mediaAnimation="slide-up"
mediaPosition="left"
imageSrc="http://img.b2bpic.net/free-photo/dentist-working-with-patient-clinic_1303-17637.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterBaseCard
logoText="Siyaram Dental"
copyrightText="© 2025 Siyaram Dental & Multispeciality Clinic"
columns={[
{ title: "Contact", items: [{ label: "Call: 08460260331", href: "tel:08460260331" }] },
{ title: "Address", items: [{ label: "Hatiya Gachhi, Saharsa", href: "#" }] }
{ title: "Quick Contact", items: [{ label: "Call: 08460260331", href: "tel:08460260331" }, { label: "Email: info@siyaramdental.com", href: "mailto:info@siyaramdental.com" }] },
{ title: "Visit Us", items: [{ label: "Opposite Rohit Honda Showroom, Hatiya Gachhi, Saharsa", href: "#" }] }
]}
/>
</div>