10 Commits

Author SHA1 Message Date
f1e31badfc Update theme fonts 2026-05-17 17:03:32 +00:00
b75fa4199b Update theme fonts 2026-05-17 17:03:32 +00:00
44513c5dc1 Update theme fonts 2026-05-17 17:02:26 +00:00
63e66bb20b Update theme fonts 2026-05-17 17:02:26 +00:00
1bdb17fade Update theme fonts 2026-05-17 17:02:14 +00:00
b545b76ef1 Update theme fonts 2026-05-17 17:02:14 +00:00
52625996e3 Update theme colors 2026-05-17 17:01:17 +00:00
becac959c2 Update theme colors 2026-05-17 17:01:00 +00:00
77425bd96e Update theme colors 2026-05-17 17:00:42 +00:00
6eedb58fe8 Update theme colors 2026-05-17 17:00:28 +00:00
3 changed files with 18 additions and 14 deletions

View File

@@ -6,20 +6,26 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
export const metadata: Metadata = { title: 'Ugarte Landscapes & Irrigation Repair | Expert Lawn Care', description: 'Transform your outdoor space with Ugarte Landscapes & Irrigation Repair. Professional landscaping, lawn maintenance, and expert irrigation system repairs.' };
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = { title: 'Ugarte Landscapes & Irrigation Repair | Expert Lawn Care', description: 'Transform your outdoor space with Ugarte Landscapes & Irrigation Repair. Professional landscaping, lawn maintenance, and expert irrigation system repairs.' };
export default function RootLayout({
children,
}: Readonly<{
@@ -28,9 +34,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${libreBaskerville.variable} ${inter.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-inter), 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-libre-baskerville), serif;
}

View File

@@ -12,9 +12,9 @@
--background: #f7f9f4;
--card: #ffffff;
--foreground: #48c4dd;
--primary-cta: #2d5a27;
--primary-cta-text: #ffffff;
--foreground: #000000;
--primary-cta: #ffffff;
--primary-cta-text: #16bf00;
--secondary-cta: #ffffff;
--secondary-cta-text: #428339;
--accent: #4a8c3f;