7 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
2 changed files with 14 additions and 12 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;
}