diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 15d9bfd..fd527b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +