7 Commits

Author SHA1 Message Date
a978c34def Merge version_2 into main
Merge version_2 into main
2026-03-18 11:29:58 +00:00
2556c46a40 Update src/app/styles/base.css 2026-03-18 11:29:53 +00:00
9bc9e6370a Update src/app/page.tsx 2026-03-18 11:29:53 +00:00
ec64b362c0 Update src/app/layout.tsx 2026-03-18 11:29:53 +00:00
7cb123eb3e Merge version_1 into main
Merge version_1 into main
2026-03-18 11:24:06 +00:00
b9c24d9fda Merge version_1 into main
Merge version_1 into main
2026-03-18 11:23:41 +00:00
cc782e03b6 Merge version_1 into main
Merge version_1 into main
2026-03-18 11:23:19 +00:00
3 changed files with 30 additions and 15 deletions

View File

@@ -6,6 +6,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google"; import { Raleway } from "next/font/google";
import { Poppins } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -14,8 +16,13 @@ export const metadata: Metadata = {
description: 'Advanced dental care in Hyderabad with experienced dentists. Painless treatments, implants, whitening, braces & cosmetic dentistry. Book your appointment today!', description: 'Advanced dental care in Hyderabad with experienced dentists. Painless treatments, implants, whitening, braces & cosmetic dentistry. Book your appointment today!',
}; };
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"], const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -26,7 +33,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${raleway.variable} antialiased`}> <body className={`${poppins.variable} ${dmSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -8,7 +8,7 @@ import FeatureHoverPattern from "@/components/sections/feature/featureHoverPatte
import TeamCardFive from "@/components/sections/team/TeamCardFive"; import TeamCardFive from "@/components/sections/team/TeamCardFive";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import FaqBase from "@/components/sections/faq/FaqBase"; import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Award, Heart, HelpCircle, Shield, Smile, Sparkles, Users, Zap } from "lucide-react"; import { Award, Heart, HelpCircle, Shield, Smile, Sparkles, Users, Zap } from "lucide-react";
@@ -218,17 +218,25 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactSplitForm
text="Ready to transform your smile? Contact Shiva Dental Clinic today to schedule your consultation. Our friendly team is here to answer any questions and help you achieve optimal oral health." title="Get in Touch"
background={{ variant: "radial-gradient" }} description="Ready to transform your smile? Fill out the form below and our team will contact you shortly to schedule your consultation."
buttons={[ inputs={[
{ text: "Call Now", href: "tel:+919876543210" }, { name: "name", type: "text", placeholder: "Your Name", required: true },
{ text: "WhatsApp Us", href: "https://wa.me/919876543210" }, { name: "email", type: "email", placeholder: "Your Email", required: true },
{ text: "Email Us", href: "mailto:info@shivadental.com" } { name: "phone", type: "tel", placeholder: "Your Phone Number", required: true }
]} ]}
textarea={{
name: "message", placeholder: "Tell us about your dental concerns or questions...", rows: 5,
required: true
}}
useInvertedBackground={true} useInvertedBackground={true}
animationType="entrance-slide" imageSrc="http://img.b2bpic.net/free-photo/side-view-nurses-patient-clinic_23-2149741220.jpg?_wi=3"
ariaLabel="Contact Shiva Dental Clinic" imageAlt="Contact Shiva Dental Clinic"
mediaAnimation="blur-reveal"
mediaPosition="right"
buttonText="Send Message"
ariaLabel="Contact form for Shiva Dental Clinic"
/> />
</div> </div>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-raleway), sans-serif; font-family: var(--font-poppins), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-raleway), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }