diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 872a815..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "FitAI Pro - AI Fitness Tracker for Bodybuilders", - description: "AI-powered fitness tracking for bodybuilders. Real-time body composition analysis, personalized workouts, and progress metrics. Premium fitness app with 50k+ active users.", - keywords: "fitness tracker, bodybuilding app, AI fitness, workout planner, body composition, muscle tracking, premium fitness", - metadataBase: new URL("https://fitaipro.com"), - alternates: { - canonical: "https://fitaipro.com", - }, - openGraph: { - title: "FitAI Pro - Transform Your Physique with AI", - description: "The most advanced AI-powered fitness tracking platform for serious bodybuilders.", - url: "https://fitaipro.com", - siteName: "FitAI Pro", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZTwsvSZ7aKEnegw7ngPzcUZ8T/a-sleek-modern-fitness-tracking-dashboar-1772802363769-55b3f993.png", - alt: "FitAI Pro Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "FitAI Pro - AI Fitness Tracking", - description: "Transform your physique with AI-powered fitness analytics.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZTwsvSZ7aKEnegw7ngPzcUZ8T/a-sleek-modern-fitness-tracking-dashboar-1772802363769-55b3f993.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} +