6 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
3 changed files with 11 additions and 7 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}
@@ -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;
}