6 Commits

Author SHA1 Message Date
f4f076ce0f Update src/app/styles/base.css 2026-03-21 00:09:50 +00:00
faeaba7a7a Update src/app/layout.tsx 2026-03-21 00:09:49 +00:00
37b74300fc Update src/app/styles/base.css 2026-03-21 00:07:44 +00:00
6bdd104afe Update src/app/page.tsx 2026-03-21 00:07:44 +00:00
0c3f91573e Update src/app/layout.tsx 2026-03-21 00:07:44 +00:00
115226dea4 Merge version_1 into main
Merge version_1 into main
2026-03-21 00:00:31 +00:00
3 changed files with 13 additions and 13 deletions

View File

@@ -1,22 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Fredoka } from "next/font/google";
import { Sora } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Roboto } from "next/font/google";
export const metadata: Metadata = {
title: 'Rising Saddle Ranch | Urban Youth Ranch Experiences',
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 fredoka = Fredoka({
variable: "--font-fredoka", subsets: ["latin"],
});
const sora = Sora({
variable: "--font-sora", subsets: ["latin"],
});
export default function RootLayout({
@@ -27,7 +27,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${fredoka.variable} ${sora.variable} antialiased`}>
<Tag />
{children}
<script
@@ -39,4 +39,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -226,4 +226,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

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