5 Commits

Author SHA1 Message Date
0078ba7834 Update theme fonts 2026-05-27 23:41:46 +00:00
5ca59ee8ef Update theme fonts 2026-05-27 23:41:46 +00:00
d1b45b0f31 Update theme colors 2026-05-27 23:40:23 +00:00
e9f544f83c Update theme colors 2026-05-27 23:40:17 +00:00
b6c17a82e1 Update theme colors 2026-05-27 23:39:57 +00:00
3 changed files with 15 additions and 16 deletions

View File

@@ -6,23 +6,24 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Git R Down Tree Service | Cumberland County, PA',
description: 'Expert tree removal, trimming, and stump grinding in Cumberland County, PA. Git R Down Tree Service is trusted by 4.5-star reviews for professional, timely work.',
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -31,9 +32,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -12,10 +12,10 @@
--background: #f7f9f4;
--card: #ffffff;
--foreground: #1a2e1a;
--foreground: #3a9e3a;
--primary-cta: #2d5a27;
--primary-cta-text: #ffffff;
--secondary-cta: #ffffff;
--secondary-cta: #4bc136;
--secondary-cta-text: #2d5a27;
--accent: #4a8c3f;
--background-accent: #6fb85e;