3 Commits

Author SHA1 Message Date
9a4d0d3c1b Switch to version 1: modified src/app/page.tsx 2026-03-04 08:46:52 +00:00
602bb83c65 Switch to version 1: modified src/app/layout.tsx 2026-03-04 08:46:51 +00:00
04c27f4d0f Merge version_2 into main
Merge version_2 into main
2026-03-04 08:30:02 +00:00
2 changed files with 35 additions and 9 deletions

View File

@@ -1,20 +1,45 @@
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 inter = Inter({ subsets: ["latin"] });
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
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."};
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
}
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1407,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -230,11 +230,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to take action? Join 10,000+ advocates working to end cyberbullying. Get started in 2 minutes."
text="Ready to make a difference? Join our community and help create a safer digital world for everyone."
animationType="reveal-blur"
background={{ variant: "plain" }}
buttons={[
{ text: "Start Helping Today", href: "contact" },
{ text: "Get Involved", href: "contact" },
{ text: "Learn More", href: "about" }
]}
useInvertedBackground={false}
@@ -274,4 +274,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}