diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bcbc0fe..9eedb03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "StudyMap - Interactive Study Maps for Better Learning", description: "Create visual study maps to organize knowledge, collaborate with peers, and track learning progress. Transform complex topics into clear learning pathways.", keywords: "study maps, learning tools, knowledge mapping, educational platform, collaborative learning, study organization", metadataBase: new URL("https://studymap.example.com"), - openGraph: { - title: "StudyMap - Master Your Learning", description: "Create interactive study maps to visualize and master any subject", url: "https://studymap.example.com", siteName: "StudyMap", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/hand-drawn-banners-with-digital-learning-elements_23-2147597512.jpg", alt: "StudyMap Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "StudyMap - Master Your Learning", description: "Create interactive study maps to visualize and master any subject", images: ["http://img.b2bpic.net/free-vector/hand-drawn-banners-with-digital-learning-elements_23-2147597512.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "StudyMap - Master Your Learning with Interactive Study Maps", description: "Create, visualize, and share comprehensive study maps to organize your knowledge. Transform complex topics into clear, connected learning pathways."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +