Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e69bdd9e46 | |||
| 792b37d1ec | |||
| 7590f0838b | |||
| dc47178bf9 | |||
| ab527cb0b5 |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1407,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -230,11 +230,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to make a difference? Join our community and help create a safer digital world for everyone."
|
||||
text="Ready to take action? Join 10,000+ advocates working to end cyberbullying. Get started in 2 minutes."
|
||||
animationType="reveal-blur"
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Get Involved", href: "contact" },
|
||||
{ text: "Start Helping Today", href: "contact" },
|
||||
{ text: "Learn More", href: "about" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
@@ -274,4 +274,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user