Update src/app/layout.tsx

This commit is contained in:
2026-03-04 19:51:53 +00:00
parent a309c83274
commit cdfd570dde

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}