From f15f0ed34dd2be49571ef2b8ffb7c9156eae19ee Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:58:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1410 +------------------------------------------- 1 file changed, 11 insertions(+), 1399 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6ffd0a6..e5c108d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1414 +1,27 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Fit N' Fine Fitness - Premium Gym & Training", description: "Transform your body and achieve your fitness goals at Fit N' Fine Fitness. Premium equipment, expert trainers, and supportive community. Join today!", keywords: "gym, fitness, training, strength training, personal training, group classes, workout programs", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Fit N' Fine Fitness - Your Fitness Transformation Starts Here", description: "Join thousands of members at Fit N' Fine Fitness. Premium gym with expert trainers and supportive community.", siteName: "Fit N' Fine Fitness", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/exercise-machines-gym-without-people_637285-8444.jpg", alt: "Modern gym facility at Fit N' Fine Fitness"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fit N' Fine Fitness - Premium Gym Training", description: "Transform your fitness journey with our premium gym, expert trainers, and vibrant community.", images: ["http://img.b2bpic.net/free-photo/exercise-machines-gym-without-people_637285-8444.jpg"], - }, -}; + title: "Fit N' Fine Fitness", description: "Transform your body, transform your life"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -