From af618f2f4655dd81874dad942b5c5f4767fbbc24 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:29:25 +0000 Subject: [PATCH 1/3] Update src/app/community/page.tsx --- src/app/community/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/community/page.tsx b/src/app/community/page.tsx index 282cb79..2691bd0 100644 --- a/src/app/community/page.tsx +++ b/src/app/community/page.tsx @@ -47,7 +47,7 @@ export default function CommunityPage() { title: "Recent Posts", description: "Browse the latest discussions from your school community. See what your peers are talking about, asking, and sharing right now.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-people-meeting_23-2148686513.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-people-meeting_23-2148686513.jpg?_wi=2", imageAlt: "Students discussing in a community setting", }, { @@ -55,7 +55,7 @@ export default function CommunityPage() { title: "Create New Post", description: "Share your thoughts, ask questions, or start a discussion. Post anonymously and connect with your school community without revealing your identity.", - imageSrc: "http://img.b2bpic.net/free-photo/corporate-business-people_23-2148827025.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/corporate-business-people_23-2148827025.jpg?_wi=2", imageAlt: "People creating content together", }, { @@ -63,7 +63,7 @@ export default function CommunityPage() { title: "Popular Discussions", description: "Discover trending topics and the most active conversations happening in your school. Join discussions that matter to you and your peers.", - imageSrc: "http://img.b2bpic.net/free-vector/login-screen-design_1040-1055.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/login-screen-design_1040-1055.jpg?_wi=2", imageAlt: "Popular discussion topics interface", }, ]; -- 2.49.1 From 7fa40a7b397bc0d83f051601fc1fd14ec0d30325 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:29:26 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..ffb22c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Archivo } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "VibeSchool - Anonymous School Community Platform", + description: "Connect anonymously with students from your school. Safe, private discussions with your peers. School-only access.", + keywords: "anonymous school community, student platform, safe discussion, peer connection, school board", + metadataBase: new URL("https://vibeschool.com"), + alternates: { + canonical: "https://vibeschool.com", + }, + openGraph: { + title: "VibeSchool - Anonymous School Community", + description: "Connect anonymously with students from your school in a safe, moderated community.", + url: "https://vibeschool.com", + siteName: "VibeSchool", + type: "website", + images: [ + { + url: "https://vibeschool.com/og-image.png", + alt: "VibeSchool platform screenshot", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "VibeSchool - Connect Anonymously", + description: "The safe platform for school communities", + images: ["https://vibeschool.com/twitter-image.png"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}