diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2580cb1..6d9a550 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +1,20 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Cyberbullying Prevention & Digital Safety Resources", description: "Learn how to recognize, prevent, and respond to cyberbullying. Access educational resources, support communities, and protection strategies for a safer digital world.", keywords: "cyberbullying, digital safety, online harassment, internet safety, cyberbullying prevention, online protection", openGraph: {
- title: "SafeWeb - Stop Cyberbullying Together", description: "Comprehensive resources and strategies to protect yourself and others from cyberbullying. Join our community.", type: "website", siteName: "SafeWeb"
- },
- twitter: {
- card: "summary_large_image", title: "Cyberbullying Prevention & Digital Safety", description: "Learn how to protect yourself online and support others affected by cyberbullying."
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "SafeWeb | Digital Safety & Cyberbullying Prevention", description: "Learn how to recognize, report, and protect yourself from cyberbullying. Empower yourself with knowledge, resources, and community support for a safer digital world."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-