diff --git a/src/app/layout.tsx b/src/app/layout.tsx index db858b4..f5ebb5b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,26 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Max | AI Looksmaxxing Coach - SMS Fitness, Nutrition & Bone Health", description: "Your AI coach, every day in your pocket. Get personalized SMS coaching for fitness, nutrition, and bone health. Real feedback. Real results. Transform your appearance with Max.", keywords: "looksmaxxing, fitness coaching, nutrition guidance, appearance optimization, AI coach, SMS coaching, bone health, facial analysis", metadataBase: new URL("https://maxlooksmaxx.com"), - alternates: { - canonical: "https://maxlooksmaxx.com" - }, - openGraph: { - title: "Max | AI Looksmaxxing Coach", description: "Personalized SMS coaching for fitness, nutrition, and appearance optimization.", url: "https://maxlooksmaxx.com", siteName: "Max", type: "website", images: [ - { - url: "https://maxlooksmaxx.com/og-image.jpg", alt: "Max AI Coach Dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Max | AI Looksmaxxing Coach", description: "Your AI coach, every day in your pocket.", images: ["https://maxlooksmaxx.com/twitter-image.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Max | AI Looksmaxxing Coach", description: "Personalized AI coaching for fitness, nutrition, and appearance optimization through daily SMS guidance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +