From 9dc170bdcaded76e8db1e1be0bf6b549884ca408 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:11:48 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index bfd196a..bf14391 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -147,4 +147,4 @@ export default function ContactPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 8d111faf921b589529d7344569b4208226a23c4d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:11:48 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 20aa8ed..b67692b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Youth Center Sport Field | Fitness Gym in Addis Ababa", description: "Premium fitness gym located at Comoros Street, Addis Ababa. Professional training, modern equipment, and community-focused fitness programs.", keywords: "gym, fitness, Addis Ababa, Youth Center, training, sports field", metadataBase: new URL("https://youth-center-sport-field.com"), - alternates: { - canonical: "https://youth-center-sport-field.com"}, - openGraph: { - title: "Youth Center Sport Field | Transform Your Fitness", description: "Premium fitness gym in Addis Ababa offering professional training and modern facilities", url: "https://youth-center-sport-field.com", siteName: "Youth Center Sport Field", type: "website"}, - twitter: { - card: "summary_large_image", title: "Youth Center Sport Field | Fitness Gym", description: "Join Ethiopia's premier fitness community in Addis Ababa"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Youth Center Sport Field", description: "Experience world-class fitness in the heart of Addis Ababa"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +