Update src/app/layout.tsx

This commit is contained in:
2026-03-21 00:07:44 +00:00
parent 115226dea4
commit 0c3f91573e

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Roboto } from "next/font/google";
import { Fredoka_Condensed } from "next/font/google";
@@ -14,9 +15,10 @@ export const metadata: Metadata = {
description: 'Transformative ranch programs for urban youth. Build leadership, confidence, and responsibility through hands-on horse experiences. Book your group experience today.',
};
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const fredokaCondensed = Fredoka_Condensed({
variable: "--font-fredoka-condensed", subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
export default function RootLayout({
@@ -27,7 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${fredokaCondensed.variable} antialiased`}>
<Tag />
{children}
<script