From 50de9538960017e3c2e5693383bf2ed93ef68625 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 14:44:56 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 85d7577..61a9aff 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -76,7 +76,7 @@ export default function AboutPage() { tagAnimation="slide-up" title="Building a Fitness Community Rooted in Trust" description="Elite Fitness was founded on a simple principle: everyone deserves access to expert fitness guidance in a clean, welcoming environment. For over 9 years, we've been committed to creating a space where members feel supported, not intimidated. Our mission is to transform lives through fitness while maintaining the highest standards of cleanliness and professionalism." - imageSrc="http://img.b2bpic.net/free-photo/woman-helping-man-gym_23-2149627104.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-helping-man-gym_23-2149627104.jpg?_wi=2" imageAlt="Personal trainer guiding gym member" useInvertedBackground={false} buttons={[{ text: "Book a Tour", href: "#contact" }]} @@ -128,12 +128,12 @@ export default function AboutPage() {
Date: Thu, 19 Mar 2026 14:44:56 +0000 Subject: [PATCH 2/5] Update src/app/hygiene-safety/page.tsx --- src/app/hygiene-safety/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/hygiene-safety/page.tsx b/src/app/hygiene-safety/page.tsx index efaadb2..ba87015 100644 --- a/src/app/hygiene-safety/page.tsx +++ b/src/app/hygiene-safety/page.tsx @@ -76,7 +76,7 @@ export default function HygieneSafetyPage() { tagAnimation="slide-up" title="We Take Your Health Seriously" description="At Elite Fitness, we maintain the highest standards of cleanliness and sanitation. Every piece of equipment is sanitized multiple times daily using professional-grade disinfectants. Our facility undergoes deep cleaning at the end of each day. We've invested in air filtration systems and sanitization stations throughout the gym to ensure a safe, hygienic environment for all members." - imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-man-gym-with-medical-masks_23-2148766010.jpg" + imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-man-gym-with-medical-masks_23-2148766010.jpg?_wi=2" imageAlt="Sanitized, well-maintained gym equipment" useInvertedBackground={false} buttons={[{ text: "Our Cleaning Protocol", href: "#cleaning-protocols" }]} @@ -132,7 +132,7 @@ export default function HygieneSafetyPage() { tagAnimation="slide-up" title="Safety & Hygiene FAQ" description="Detailed answers to common questions about our cleaning and safety standards." - imageSrc="http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205575.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205575.jpg?_wi=2" imageAlt="Personal trainer providing guidance to gym member" mediaAnimation="blur-reveal" mediaPosition="right" -- 2.49.1 From 4eeebae4dedb33a62b0e9f2f714b6136406546ef Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 14:44:57 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..3aaedd5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } 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 { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Elite Fitness - Best Gym in Your City | Certified Trainers & Clean Facilities", + description: "Transform your fitness at Elite Fitness. Clean, well-equipped gym with certified trainers, beginner-friendly programs, and transparent pricing. Book your free trial today.", + keywords: "gym near me, fitness center, personal training, weight loss program, best gym in city, affordable gym membership", + openGraph: { + title: "Elite Fitness - Expert Guidance & Clean Facilities", + description: "Join 500+ members at Elite Fitness. Certified trainers, transparent pricing, and a supportive community ready to help you transform.", + type: "website", + siteName: "Elite Fitness", + images: [ + { + url: "http://img.b2bpic.net/free-photo/full-shot-women-training-with-yoga-mats_23-2148938423.jpg", + alt: "Elite Fitness - Clean, modern gym facility", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Transform Your Fitness at Elite Fitness", + description: "Expert trainers, clean facilities, beginner-friendly programs. Book your free trial.", + images: ["http://img.b2bpic.net/free-photo/full-shot-women-training-with-yoga-mats_23-2148938423.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}