Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe619fb881 | |||
| 4c4016460e | |||
| e3c2c7942e | |||
| 41bbba26f3 | |||
| c40847c6f8 | |||
| 302e6fc0e6 | |||
| b586350db2 | |||
| 89bbe1199e | |||
| 2349dbe3f3 |
@@ -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
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user