Update src/app/layout.tsx

This commit is contained in:
2026-03-04 04:29:32 +00:00
parent b7e4bd1ffd
commit d28dc3a958

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
@@ -1420,4 +1406,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}