Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1438,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -138,7 +138,7 @@ export default function HomePage() {
|
||||
]}
|
||||
animationType="blur-reveal"
|
||||
title="Powerful Features Built for Bodybuilders"
|
||||
description="Everything you need to maximize gains and track progress with precision. Our AI-powered platform delivers professional-grade analytics."
|
||||
description="Everything you need to maximize gains and track progress with precision. Our AI-powered platform delivers professional-grade analytics. Transform raw data into actionable insights that accelerate your gains."
|
||||
tag="Premium Features"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
@@ -282,4 +282,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user