Update src/app/layout.tsx

This commit is contained in:
2026-03-06 15:12:05 +00:00
parent c2d3c686bc
commit 4ee6b71a64

View File

@@ -1,47 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
title: "Personal Daily Tracker Dashboard | Habit & Period Tracking", description: "Track 13 daily habits, monitor your menstrual cycle phases, and visualize your wellness progress. Free Streamlit app with productivity scoring and cycle intelligence.", keywords: "habit tracker, menstrual cycle tracker, productivity tracking, personal wellness, daily habits, period tracking app, cycle phases", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Personal Daily Tracker Dashboard", description: "Complete habit tracking and menstrual cycle monitoring in one intuitive app. Track your progress with productivity scores and cycle phase insights.", type: "website", siteName: "Personal Daily Tracker"},
};
title: "Personal Daily Tracker Dashboard", description: "Track your daily habits, monitor your menstrual cycle, and unlock powerful insights into your wellness journey."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${inter.variable} font-sans`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}