Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6c3113aeb | |||
| d5f1a6d361 | |||
| b386256850 | |||
| 4d19c6458c | |||
| ba2939db6a | |||
| da20568c20 | |||
| 99d9baacf5 | |||
| 5130e813bf |
@@ -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
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user