8 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
99d9baacf5 Merge version_3 into main
Merge version_3 into main
2026-03-26 01:50:21 +00:00
5130e813bf Merge version_3 into main
Merge version_3 into main
2026-03-26 01:48:35 +00:00
3 changed files with 15 additions and 7 deletions

View File

@@ -9,6 +9,7 @@ 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";
@@ -45,8 +46,15 @@ export const metadata: Metadata = {
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -58,7 +66,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -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."
@@ -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-nunito-sans), 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-nunito-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}