From 4098dcf613829dc3aa2de1005a0e630825a65077 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 05:54:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 85f3f8b..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "StudySprint - Pomodoro Timer & Study Planner for Students", description: "Master your study time with StudySprint. Free Pomodoro timer, homework planner, exam tracker, and motivational tools for teenage students.", keywords: "study timer, pomodoro, homework planner, exam tracker, student productivity, focus app", openGraph: { - title: "StudySprint - Study Smarter, Not Harder", description: "Free study tools for teenagers: Pomodoro timer, homework planner, progress tracker, and motivational quotes.", type: "website", siteName: "StudySprint"}, - twitter: { - card: "summary_large_image", title: "StudySprint - The Student Study App", description: "Pomodoro timer + homework planner + progress tracking. Free for students."}, - 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 ( - - - - - {children} - + + + {children} +