1 Commits

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