From d28dc3a958db5c9ae1d83593bd3e350cf9ad63aa Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:29:32 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 12ebbda..8314e05 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,40 +1,26 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Wacey - AI-Powered Educational Platform", - description: "Modern tutoring platform with structured content library, progress tracking, and AI guidance for specialist, methods, chemistry, and physics subjects across year groups 9-12.", - keywords: "online tutoring, education platform, physics, chemistry, methods, specialist subjects, progress tracking, AI tutor", - robots: { + title: "Wacey - AI-Powered Educational Platform", description: "Modern tutoring platform with structured content library, progress tracking, and AI guidance for specialist, methods, chemistry, and physics subjects across year groups 9-12.", keywords: "online tutoring, education platform, physics, chemistry, methods, specialist subjects, progress tracking, AI tutor", robots: { index: true, follow: true, }, openGraph: { - title: "Wacey - AI-Powered Educational Platform", - description: "Master your subjects with personalized learning paths and expert resources", - url: "https://wacey.com", - siteName: "Wacey", - type: "website", - images: [ + title: "Wacey - AI-Powered Educational Platform", description: "Master your subjects with personalized learning paths and expert resources", url: "https://wacey.com", siteName: "Wacey", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/wireless-technology-could-be-very-useful_329181-14220.jpg", - alt: "Wacey tutoring platform interface", - }, + url: "http://img.b2bpic.net/free-photo/wireless-technology-could-be-very-useful_329181-14220.jpg", alt: "Wacey tutoring platform interface"}, ], }, twitter: { - card: "summary_large_image", - title: "Wacey - AI-Powered Educational Platform", - description: "Master your subjects with personalized learning paths and expert resources", - images: ["http://img.b2bpic.net/free-photo/wireless-technology-could-be-very-useful_329181-14220.jpg"], + card: "summary_large_image", title: "Wacey - AI-Powered Educational Platform", description: "Master your subjects with personalized learning paths and expert resources", images: ["http://img.b2bpic.net/free-photo/wireless-technology-could-be-very-useful_329181-14220.jpg"], }, }; @@ -46,7 +32,7 @@ export default function RootLayout({ return ( - + {children} @@ -1420,4 +1406,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}