6 Commits

Author SHA1 Message Date
cd638f3566 Update theme fonts 2026-05-01 02:46:06 +00:00
44f5055d15 Update theme fonts 2026-05-01 02:46:06 +00:00
473cc7b420 Update theme fonts 2026-05-01 02:45:58 +00:00
89bb332661 Update theme fonts 2026-05-01 02:45:57 +00:00
88227a93df Update src/app/page.tsx 2026-05-01 02:44:05 +00:00
0a37c30f76 Merge version_1 into main
Merge version_1 into main
2026-05-01 02:37:22 +00:00
3 changed files with 15 additions and 6 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google"; import { Open_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -20,8 +22,15 @@ export const metadata: Metadata = {
}, },
}; };
const openSans = Open_Sans({
variable: "--font-open-sans",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -33,7 +42,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${openSans.variable} antialiased`}> <body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -143,7 +143,7 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
background={{ variant: "plain" }} background={{ variant: "plain" }}
tag="Get in touch" tag="Get in touch"
title="Ready to Notarize?" title="Schedule Your Same-Day Appointment"
description="Send a request for a same-day appointment and our team will get back to you immediately." description="Send a request for a same-day appointment and our team will get back to you immediately."
mediaAnimation="slide-up" mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-executive-signing-agreement_1098-2041.jpg" imageSrc="http://img.b2bpic.net/free-photo/close-up-executive-signing-agreement_1098-2041.jpg"

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-libre-baskerville), serif;
} }