diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a76a234..fe667d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "The Learner Agency | Educational Psychologist in Bray", description: "Professional educational psychology services in Bray, Co. Wicklow. Brid Clancy specializes in learning assessments, child development support, and counseling.", keywords: "educational psychologist, Bray, Co. Wicklow, learning assessment, child development, counseling, school consultation", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "The Learner Agency | Educational Psychologist", description: "Supporting children's learning and development with expert educational psychology services", type: "website", siteName: "The Learner Agency"}, - twitter: { - card: "summary_large_image", title: "The Learner Agency | Educational Psychologist", description: "Professional educational psychology services in Bray, Co. Wicklow"}, -}; + title: "The Learner Agency", description: "Professional educational psychology services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -