10 Commits

Author SHA1 Message Date
19fe0c54ee Update theme fonts 2026-04-15 16:09:56 +00:00
324aab7769 Update theme fonts 2026-04-15 16:09:55 +00:00
6880d59f8e Update theme fonts 2026-04-15 16:09:38 +00:00
4e4aacaedb Update theme fonts 2026-04-15 16:09:38 +00:00
1fd90621f7 Update theme fonts 2026-04-15 16:09:29 +00:00
5ffa38cbd9 Update theme fonts 2026-04-15 16:09:28 +00:00
cf4d2d631c Update theme colors 2026-04-15 16:08:55 +00:00
b3cb335862 Update theme colors 2026-04-15 16:08:39 +00:00
38b352ade5 Update theme colors 2026-04-15 16:08:31 +00:00
5fd9031e12 Update theme colors 2026-04-15 16:08:21 +00:00
3 changed files with 16 additions and 16 deletions

View File

@@ -6,20 +6,22 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Roboto } from "next/font/google";
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: 'Elite Fitness Coaching | Transform Your Body & Mind', description: 'Achieve your peak performance with personalized fitness coaching, custom workout plans, and expert nutritional guidance tailored to your unique goals.' };
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -28,9 +30,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${roboto.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-roboto), 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-roboto), sans-serif;
}

View File

@@ -11,9 +11,9 @@
--background-accent: #ffffff; */
--background: #ffffff;
--card: #e60909;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #2be682;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;