diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2c24cac..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,28 @@ 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 { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -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"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "TrainerPro - Sell Interactive Video Training & Grow Your Fitness Business", description: "Turn your fitness expertise into consistent income. Create, sell, and monetize interactive workout videos. Join 10,000+ trainers earning with TrainerPro.", keywords: "fitness trainer income, interactive video training, personal trainer business, workout video platform, monetize fitness content", metadataBase: new URL("https://trainerpro.com"), - alternates: { - canonical: "https://trainerpro.com"}, - openGraph: { - title: "TrainerPro - Monetize Interactive Video Training", description: "Create and sell interactive workout videos to your clients. Scale your fitness business with our all-in-one platform.", url: "https://trainerpro.com", siteName: "TrainerPro", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcizLZTtbyvw7OFUkLMfx8Mg2c/a-modern-interactive-fitness-video-inter-1772898594790-834e9cb8.png", alt: "TrainerPro Interactive Video Training Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TrainerPro - Sell Interactive Video Training", description: "Monetize your fitness expertise. Create, share, and earn from interactive workout videos.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcizLZTtbyvw7OFUkLMfx8Mg2c/a-modern-interactive-fitness-video-inter-1772898594790-834e9cb8.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +