diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1677372..d0387e1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "The Ultimate Habit Tracker Dashboard | Premium Google Sheets Template", description: "Master your routine with our premium Habit Tracker Dashboard. Track 20+ habits daily, visualize progress with AI-powered insights, and transform your life. Get instant access now.", keywords: "habit tracker, productivity template, google sheets, daily planner, habit building, performance tracking, goal management, routine optimization", metadataBase: new URL("https://habittrackerapp.com"), - alternates: { - canonical: "https://habittrackerapp.com"}, - openGraph: { - title: "The Ultimate Habit Tracker Dashboard | Transform Your Routine", description: "Premium habit tracking template designed for high achievers. 20+ automated habits, visual progress charts, and weekly insights.", type: "website", siteName: "Habit Tracker Dashboard", url: "https://habittrackerapp.com", images: [ - { - url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg", alt: "Habit Tracker Dashboard Interface"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Ultimate Habit Tracker Dashboard", description: "Master your routine with our premium habit tracking template. 20+ habits, advanced analytics, and AI-powered insights.", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ultimate Habit Tracker Dashboard", description: "Master your routine, transform your life with our premium habit tracking system"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}