Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe619fb881 | |||
| 4c4016460e | |||
| e3c2c7942e | |||
| 41bbba26f3 | |||
| c40847c6f8 | |||
| 302e6fc0e6 |
@@ -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}
|
||||
@@ -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