Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3cb0615f05 | |||
| 8d111faf92 | |||
| 9dc170bdca | |||
| 60d618c2a7 |
@@ -147,4 +147,4 @@ export default function ContactPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1380,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -128,10 +128,6 @@ export default function LandingPage() {
|
||||
id: "3", name: "Desalegn Mekonnen", handle: "@Desalegn_Fit", testimonial: "Best gym facility in the city. The outdoor sports field and professional environment make it worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/attractive-fit-man-working-out-indoors-with-dumbbells_23-2149175334.jpg", imageAlt: "Desalegn Mekonnen"},
|
||||
{
|
||||
id: "4", name: "Selamawit Alemu", handle: "@SelamFitnessJourney", testimonial: "The trainers here understand my goals and push me to be better every single day. Highly recommend Youth Center!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-diversity-sport-woman-training_23-2149174802.jpg", imageAlt: "Selamawit Alemu"},
|
||||
{
|
||||
id: "5", name: "Yohannes Kebede", handle: "@YohannesTone", testimonial: "Perfect location, amazing facilities, and the community spirit is what makes Youth Center special. This is my second home.", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-red-headband-looking-confident-smiling-with-arms-crossed-standing-orange-wall_141793-55561.jpg", imageAlt: "Yohannes Kebede"},
|
||||
{
|
||||
id: "6", name: "Alemayehu Assefa", handle: "@AlemayehuStrong", testimonial: "Joining Youth Center was the best decision for my fitness. The professional atmosphere motivates me every day.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-cool-confident-young-afro-american-20-year-old-man-wearing-white-sleeveless-t-shirt-posing-isolated-handsome-serious-dark-skinned-guy-with-muscular-shoulders-resting-indoors_343059-403.jpg", imageAlt: "Alemayehu Assefa"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="What Our Members Say"
|
||||
@@ -187,4 +183,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user