From 535ecc204fdd7d4e3337303f41afd0d8b1d00f84 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:08:45 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1151a44..697bba9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "StudyFlow - Clean Study Tracker App", description: "Track your studies with minimal design. Set goals, monitor progress, and build consistent study habits with beautiful simplicity.", keywords: "study tracker, productivity app, goal tracking, student planner, focus timer", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "StudyFlow - Clean Study Tracker App", description: "Track your studies with minimal design. Set goals, monitor progress, and build consistent study habits with beautiful simplicity.", type: "website", siteName: "StudyFlow"}, - twitter: { - card: "summary_large_image", title: "StudyFlow - Clean Study Tracker App", description: "Track your studies with minimal design. Set goals, monitor progress, and build consistent study habits with beautiful simplicity."}, + title: 'StudyFlow - Track Your Studies with Purpose', + description: 'A clean, minimal study tracker designed for focus. Set goals, monitor progress, and build consistent study habits.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +