diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2645f38..0b96dc4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,20 @@
import type { Metadata } from "next";
-import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "FitZone - Premium Gym & Fitness Classes", description: "Transform your fitness journey at FitZone. Expert trainers, diverse classes, and a supportive community. Join today and achieve your goals!", keywords: "gym, fitness classes, personal training, strength training, yoga, cardio, fitness community", openGraph: {
- title: "FitZone - Your Fitness Transformation Starts Here", description: "Premium gym with expert trainers, diverse classes, and supportive community. Transform your body and mind.", type: "website", siteName: "FitZone", images: [
- {
- url: "http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg", alt: "FitZone gym fitness training"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "FitZone - Premium Gym & Fitness", description: "Transform your fitness journey with expert trainers and a supportive community.", images: ["http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "FitZone - Transform Your Fitness", description: "Join FitZone fitness community"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7043637..0b18f4e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -199,7 +199,7 @@ export default function LandingPage() {