14 Commits

Author SHA1 Message Date
c6c3113aeb Update theme fonts 2026-03-26 01:53:43 +00:00
d5f1a6d361 Update theme fonts 2026-03-26 01:53:42 +00:00
b386256850 Update theme fonts 2026-03-26 01:51:48 +00:00
4d19c6458c Update theme fonts 2026-03-26 01:51:47 +00:00
ba2939db6a Update src/app/page.tsx 2026-03-26 01:51:17 +00:00
da20568c20 Merge version_3 into main
Merge version_3 into main
2026-03-26 01:50:32 +00:00
fe619fb881 Update theme fonts 2026-03-26 01:50:29 +00:00
4c4016460e Update theme fonts 2026-03-26 01:50:29 +00:00
99d9baacf5 Merge version_3 into main
Merge version_3 into main
2026-03-26 01:50:21 +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
5130e813bf Merge version_3 into main
Merge version_3 into main
2026-03-26 01:48:35 +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 19 additions and 7 deletions

View File

@@ -7,6 +7,9 @@ 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";
import { Libre_Baskerville } from "next/font/google";
@@ -41,8 +44,17 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -54,7 +66,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.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}
@@ -136,7 +136,7 @@ export default function LandingPage() {
useInvertedBackground={true}
names={["Hartford Magazine TopDentist 2019", "Aetna Dental Insurance", "Cigna Dental Insurance", "Delta Dental Insurance", "MetLife Dental Insurance", "Guardian Dental Insurance", "UnitedHealthcare Dental Insurance"]}
logos={[
"http://img.b2bpic.net/free-vector/technology-logo-template-with-abstract-shapes_23-2148240849.jpg", "http://img.b2bpic.net/free-vector/collection-premium-shields_23-2147610664.jpg", "http://img.b2bpic.net/free-vector/flat-design-medical-label-pack_23-2149078704.jpg", "http://img.b2bpic.net/free-vector/gradient-dental-clinic-labels-template_23-2149524084.jpg", "http://img.b2bpic.net/free-vector/heart-logo-template_23-2147503110.jpg", "http://img.b2bpic.net/free-vector/set-retro-vintage-sale-logo-badges-dark_1150-41034.jpg", "http://img.b2bpic.net/free-photo/mid-adult-man-pain-looking-mirror-while-gesturing-female-dentist-clinic_662251-2576.jpg"
"http://img.b2bpic.net/free-vector/pharmacy-logo-with-tooth_1057-2516.jpg", "http://img.b2bpic.net/free-vector/blue-hospital-logo-template_1057-394.jpg", "http://img.b2bpic.net/free-vector/blue-logo-insurance-car_1057-2818.jpg", "http://img.b2bpic.net/free-vector/business-card-logo_23-2147516168.jpg", "http://img.b2bpic.net/free-vector/doctor-office-logo-template_23-2149665569.jpg", "http://img.b2bpic.net/free-vector/gradient-dental-logo-pack_52683-64637.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg"
]}
title="Recognized Excellence & Trusted Partners"
description="Proudly voted a Top Dentist in Hartford Magazine and accepting a wide range of insurance plans for your convenience."

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-inter), 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-libre-baskerville), serif;
}