From 25b024ab372bc13821f09b04ee3b31543e185742 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:18:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 12 insertions(+), 1401 deletions(-) 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} - -