From 4171b55a02310ddac66d932e9de32cb040781c2b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 11:48:32 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 738f992..5fec9dd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -87,7 +87,7 @@ export default function AboutPage() { }, ]} buttonAnimation="entrance-slide" - imageSrc="http://img.b2bpic.net/free-photo/vintage-style-office-workers-having-desk-job_23-2149851004.jpg" + imageSrc="http://img.b2bpic.net/free-photo/vintage-style-office-workers-having-desk-job_23-2149851004.jpg?_wi=2" imageAlt="OIStudents editorial team" mediaAnimation="entrance-slide" /> @@ -132,21 +132,21 @@ export default function AboutPage() { name: "Sophie Martinez", role: "Editor-in-Chief", description: "Leading OIStudents' vision with a focus on authentic storytelling and student empowerment.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg?_wi=2", }, { id: "editor-2", name: "James Wilson", role: "Creative Director", description: "Crafting the visual language and premium design experience that makes OIStudents distinctive.", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-posing-desk_23-2149915941.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-posing-desk_23-2149915941.jpg?_wi=2", }, { id: "editor-3", name: "Priya Patel", role: "Managing Editor", description: "Ensuring every submission meets our standards while supporting creators throughout the process.", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-journalist-holding-microphone_23-2149032428.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-journalist-holding-microphone_23-2149032428.jpg?_wi=2", }, ]} /> -- 2.49.1 From f34a438cdc35217820799508abf68b1fe17e8cd5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 11:48:33 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..bd6d8f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,35 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "OIStudents - Premium Student Magazine & Platform", + description: "Discover premium student journalism, creative writing, and photography. Submit your work and get featured on OIStudents, the official voice of our school.", + keywords: "student magazine, journalism, student publication, creative writing, student platform", + metadataBase: new URL("https://oistudents.com"), + alternates: { + canonical: "https://oistudents.com", + }, + openGraph: { + title: "OIStudents - The Voice of Our School", + description: "Premium student journalism, creative writing, and photography platform", + url: "https://oistudents.com", + siteName: "OIStudents", + images: [ + { + url: "http://img.b2bpic.net/free-photo/elevated-view-students-with-study-materials-cups-coffee-wooden-textured-table_23-2148192464.jpg", + alt: "OIStudents Platform", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "OIStudents - Premium Student Platform", + description: "Share your voice and get featured", + images: ["http://img.b2bpic.net/free-photo/elevated-view-students-with-study-materials-cups-coffee-wooden-textured-table_23-2148192464.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +61,9 @@ export default function RootLayout({ return ( - + {children}