9 Commits

Author SHA1 Message Date
b4ece12e4a Update theme fonts 2026-04-15 07:13:43 +00:00
e99a518af9 Update theme fonts 2026-04-15 07:13:43 +00:00
b11b2b500e Update theme fonts 2026-04-15 07:12:46 +00:00
9c6dbe25eb Update theme fonts 2026-04-15 07:12:46 +00:00
97668e486f Update theme fonts 2026-04-15 07:12:37 +00:00
e4fc1a1883 Update theme fonts 2026-04-15 07:12:37 +00:00
dfa72c4698 Update theme colors 2026-04-15 07:12:28 +00:00
88c89c0c12 Update theme colors 2026-04-15 07:10:10 +00:00
eb3ad3e21a Update theme colors 2026-04-15 07:09:36 +00:00
3 changed files with 18 additions and 16 deletions

View File

@@ -6,19 +6,23 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = { title: 'Professional Landscaping & Garden Design Services | GreenScape', description: 'Transform your outdoor space with GreenScape. We provide expert landscaping, lawn maintenance, and custom garden design to elevate your home\'s curb appeal.' };
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: 'Professional Landscaping & Garden Design Services | GreenScape', description: 'Transform your outdoor space with GreenScape. We provide expert landscaping, lawn maintenance, and custom garden design to elevate your home\'s curb appeal.' };
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -28,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,13 +12,13 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--foreground: #120a00e6;
--primary-cta: #FF7B05;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;
--secondary-cta-text: #120a00e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background-accent: #FF7B05;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);