From b73871857046fa18c31e5f27930a42db5cf5e5ef Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 15:37:51 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d07bca2..926ea0d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -65,7 +65,7 @@ export default function AboutPage() { description="Most gyms and sports businesses have outdated sites that don't reflect the quality of their service." subdescription="We build modern websites that make it easy for visitors to understand your offer and take action. No fluff, no jargon—just results." icon={Target} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qgmuof" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qgmuof&_wi=2" imageAlt="Modern gym facility representing quality service" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From 832ef76a5ee34151eb8de1a03f91220ff01261cc Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 15:37:52 +0000 Subject: [PATCH 2/7] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c6c399e..070d930 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -42,7 +42,7 @@ export default function ContactPage() { description="Send your site and we'll reply with 3 specific improvements to increase inquiries and conversions." background="gradient-bars" buttons={[]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qkozd5" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qkozd5&_wi=12" imageAlt="Contact and website review service" mediaAnimation="slide-up" /> @@ -116,7 +116,7 @@ export default function ContactPage() { "Your site URL (if you have one), your business type, and what you want to improve.", }, ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qkozd5" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qkozd5&_wi=13" imageAlt="Contact options" mediaAnimation="fade" useInvertedBackground={false} -- 2.49.1 From eef2b75576d1082ece574873a5b68135561e1953 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 15:37:52 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..c670579 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,40 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Elevate Web | Web Design for Gyms & Sports Businesses", + description: "Elevate Web builds modern, mobile-first websites that help gyms, sports clubs, and coaches turn visitors into inquiries and memberships.", + keywords: "web design, gym website, fitness business website, sports club website, landing pages, conversion design", + openGraph: { + title: "Elevate Web | Premium Web Design for Fitness Businesses", + description: "Modern websites that convert visitors into leads. Built for gyms, sports clubs, and coaches.", + type: "website", + siteName: "Elevate Web", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +43,9 @@ export default function RootLayout({ return ( - + {children}