diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9da9789..b0e7530 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -95,7 +95,7 @@ export default function AboutPage() { enableKpiAnimation={true} mediaAnimation="blur-reveal" background="radial-gradient" - imageSrc="http://img.b2bpic.net/free-photo/multiethnic-team-young-ambitious-entrepreneurs-working-together-start-up-project-cafeteria-table-with-papers-diagrams_273609-6192.jpg" + imageSrc="http://img.b2bpic.net/free-photo/multiethnic-team-young-ambitious-entrepreneurs-working-together-start-up-project-cafeteria-table-with-papers-diagrams_273609-6192.jpg?_wi=2" imageAlt="diverse student community learning together" /> @@ -165,25 +165,25 @@ export default function AboutPage() { { id: "founder-voice-1", name: "Dr. Jessica Wong, Founder", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-office-1_1262-1492.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-office-1_1262-1492.jpg?_wi=2", imageAlt: "Founder of Studify", }, { id: "advisor-1", name: "Prof. Michael Chen, Advisor", - imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-handsome-unshaved-dark-skinned-guy-standing-park-with-coffee-wearing-headphones-neck-looking-aside-man-tries-find-his-girlfriend-crowd-emotions-concept_176420-42397.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-handsome-unshaved-dark-skinned-guy-standing-park-with-coffee-wearing-headphones-neck-looking-aside-man-tries-find-his-girlfriend-crowd-emotions-concept_176420-42397.jpg?_wi=2", imageAlt: "Academic advisor to Studify", }, { id: "partner-1", name: "Alex Rodriguez, Head of Community", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-book-outside_23-2148396313.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-enjoying-book-outside_23-2148396313.jpg?_wi=2", imageAlt: "Community lead at Studify", }, { id: "partner-2", name: "Sarah Kim, Product Lead", - imageSrc: "http://img.b2bpic.net/free-photo/excited-adult-man-holding-laptop-making-fist-pump-rejoicing-win-standing-satisfied-against-tu_1258-160481.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/excited-adult-man-holding-laptop-making-fist-pump-rejoicing-win-standing-satisfied-against-tu_1258-160481.jpg?_wi=2", imageAlt: "Product lead at Studify", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..a23091f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Studify - Buy & Sell Academic Notes", + description: "Access affordable peer-reviewed study materials from real students. Earn money sharing your notes. Commission-based peer-to-peer marketplace for academic success.", + keywords: "buy notes, sell notes, student marketplace, study materials, academic notes, peer-to-peer, education platform", + metadataBase: new URL("https://studify.com"), + alternates: { + canonical: "https://studify.com", + }, + openGraph: { + title: "Studify - Buy & Sell Notes From Real Students", + description: "Connect with your academic community. Access affordable notes. Earn supplemental income. Join thousands of students on Studify.", + url: "https://studify.com", + siteName: "Studify", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/multiethnic-team-young-ambitious-entrepreneurs-working-together-start-up-project-cafeteria-table-with-papers-diagrams_273609-6192.jpg", + alt: "Studify peer-to-peer academic marketplace", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Studify - Buy & Sell Notes From Real Students", + description: "Access affordable study materials. Earn money sharing your notes. Join the academic community.", + images: [ + "http://img.b2bpic.net/free-photo/multiethnic-team-young-ambitious-entrepreneurs-working-together-start-up-project-cafeteria-table-with-papers-diagrams_273609-6192.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}