7 Commits

Author SHA1 Message Date
c15d7972af Update theme colors 2026-05-01 02:47:09 +00:00
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
4 changed files with 16 additions and 7 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
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"],
});
@@ -33,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -143,7 +143,7 @@ export default function LandingPage() {
useInvertedBackground={true}
background={{ variant: "plain" }}
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."
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-executive-signing-agreement_1098-2041.jpg"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-open-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-open-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -13,7 +13,7 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #106EFB;
--primary-cta: #fa400f;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;