Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-14 07:29:31 +00:00
3 changed files with 53 additions and 14 deletions

View File

@@ -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",
},
];

View File

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

View File

@@ -100,7 +100,7 @@ export default function HomePage() {
description:
"Create an account and select your school. Your real identity stays private—forever.",
imageSrc:
"http://img.b2bpic.net/free-vector/login-screen-design_1040-1055.jpg",
"http://img.b2bpic.net/free-vector/login-screen-design_1040-1055.jpg?_wi=1",
imageAlt: "user registration form modern design",
},
{
@@ -109,7 +109,7 @@ export default function HomePage() {
description:
"Automatically matched with your school's board. Only students from your school can see your posts.",
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-happy-people-meeting_23-2148686513.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-happy-people-meeting_23-2148686513.jpg?_wi=1",
imageAlt: "community board forum discussion",
},
{
@@ -118,7 +118,7 @@ export default function HomePage() {
description:
"Post anonymously, read others' thoughts, and build meaningful connections with your classmates.",
imageSrc:
"http://img.b2bpic.net/free-photo/corporate-business-people_23-2148827025.jpg",
"http://img.b2bpic.net/free-photo/corporate-business-people_23-2148827025.jpg?_wi=1",
imageAlt: "student sharing ideas together",
},
]}