9 Commits

Author SHA1 Message Date
fe619fb881 Update theme fonts 2026-03-26 01:50:29 +00:00
4c4016460e Update theme fonts 2026-03-26 01:50:29 +00:00
e3c2c7942e Update theme fonts 2026-03-26 01:50:15 +00:00
41bbba26f3 Update theme fonts 2026-03-26 01:50:14 +00:00
c40847c6f8 Update src/app/page.tsx 2026-03-26 01:48:32 +00:00
302e6fc0e6 Merge version_2 into main
Merge version_2 into main
2026-03-26 01:45:40 +00:00
b586350db2 Update src/app/page.tsx 2026-03-26 01:45:34 +00:00
89bbe1199e Merge version_1 into main
Merge version_1 into main
2026-03-26 01:42:24 +00:00
2349dbe3f3 Merge version_1 into main
Merge version_1 into main
2026-03-26 01:41:42 +00:00
3 changed files with 12 additions and 8 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Manrope } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
@@ -41,8 +43,10 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
@@ -54,7 +58,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${nunitoSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -73,7 +73,7 @@ export default function LandingPage() {
<TestimonialAboutCard
useInvertedBackground={false}
tag="Welcome"
title="Welcome to Smile Studio Dentistry"
title="Dedicated to Your Smile: Our Patient-First Philosophy"
description="Our Hartford dental practice is dedicated to creating beautiful, long-lasting smiles and maintaining healthy mouths. We deliver the best possible general, cosmetic and periodontal dental care in an atmosphere of warmth, kindness and respect."
subdescription="Our gentle, caring staff welcomes children, adults and seniors and guarantees the comfort of every member of your family. We strive to create a dental experience that provides dental excellence in a caring environment."
icon={Smile}
@@ -155,7 +155,7 @@ export default function LandingPage() {
{
id: "3", title: "Do you offer cosmetic dentistry services?", content: "Yes, we offer a full range of cosmetic dentistry services including teeth whitening, Invisalign®, crowns, and veneers to help you achieve your dream smile."},
{
id: "4", title: "What are your office hours?", content: "Our office hours are Monday & Thursday: 8:00am - 5:00pm, Friday: 8:00am - 2:00pm. We are closed on Tuesday and Wednesday. (Please note that Tuesday hours were 8:00am - 12:00pm as per website, but currently listed as closed. Reverted to initial parsed Monday/Thursday/Friday schedule with Tuesday/Wednesday closed for consistency)."},
id: "4", title: "What are your office hours?", content: "Our office hours are Monday, Thursday, and Friday: 8:00 AM - 5:00 PM. We are closed on Tuesday, Wednesday, Saturday, and Sunday."},
]}
ctaTitle="Ready to Book Your Appointment?"
ctaDescription="With a quick phone call or form submission, you could be on your way to a brighter, healthier smile. Click below to begin your journey."
@@ -222,4 +222,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

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