From adcc0e741063e1e371f76b3c9b879ca4f3efe7a5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:57:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 6 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e675b4..2572dfb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Online Coaching by Evan Hill Trains | Evidence-Based Strength & Performance", description: "Expert online coaching for strength, physique, and performance. Evidence-based training programs tailored to your goals. Book a free consult or apply for coaching today.", keywords: "online coaching, strength coaching, personal trainer, exercise physiologist, strength and conditioning, online fitness coaching, evidence-based training", metadataBase: new URL("https://evanhilltrans.com"), - alternates: { - canonical: "https://evanhilltrans.com" - }, - openGraph: { - title: "Online Coaching by Evan Hill Trains", description: "Stop guessing in the gym. Get expert coaching with real results that last.", url: "https://evanhilltrans.com", siteName: "Evan Hill Trains", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-group-people-gym_23-2150289995.jpg", alt: "Evan Hill Trains Online Coaching" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Online Coaching by Evan Hill Trains", description: "Evidence-based strength and performance coaching. Book a free consult.", images: ["http://img.b2bpic.net/free-photo/side-view-group-people-gym_23-2150289995.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Evan Hill Trains - Expert Online Coaching", description: "Evidence-based online coaching for strength, physique, performance, and long-term progress."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -