From 5effa6be3d27d1cb3beae3ae6fea486a6ea74e43 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 03:10:21 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 21 insertions(+), 1417 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 04dca7a..cf33e9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Vinsmoke Athletics | Elite Personal Training Vancouver", - description: "Transform your strength with elite personal training coaching in Vancouver. Personalized programs, disciplined results. Book your first session today.", - keywords: "personal training, strength coaching, Vancouver fitness, elite gym, personalized training programs", - metadataBase: new URL("https://vinsmokeathletics.com"), - alternates: { - canonical: "https://vinsmokeathletics.com", - }, - openGraph: { - title: "Vinsmoke Athletics | Elite Personal Training", - description: "Strength built with discipline. Personalized coaching for real results.", - url: "https://vinsmokeathletics.com", - siteName: "Vinsmoke Athletics", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Vinsmoke Athletics | Elite Personal Training", - description: "Transform your strength with personalized coaching.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Vinsmoke Athletics | Elite Strength Training in Vancouver", description: + "Personalized strength training and coaching at Vinsmoke Athletics in Vancouver, BC. Build real strength with expert guidance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +