diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 95aaa78..23c5ae6 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/look-this-data_1098-14958.jpg" + imageSrc="http://img.b2bpic.net/free-photo/look-this-data_1098-14958.jpg?_wi=2" imageAlt="students studying together notes marketplace" /> @@ -165,25 +165,25 @@ export default function AboutPage() { { id: "founder-1", name: "Alex Johnson", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-student-smiling_23-2148586534.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-student-smiling_23-2148586534.jpg?_wi=2", imageAlt: "Alex Johnson, Co-founder", }, { id: "founder-2", name: "Maya Patel", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-camera_74855-2090.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-smiling-camera_74855-2090.jpg?_wi=2", imageAlt: "Maya Patel, Co-founder", }, { id: "team-member-1", name: "David Chen", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-hipster-black-man-posing-isolated-white-studio-wall-background-stylish-outfit-funny-afro-hairstyle-smiling-happy-confident-arms-crossed-chest_285396-2947.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-hipster-black-man-posing-isolated-white-studio-wall-background-stylish-outfit-funny-afro-hairstyle-smiling-happy-confident-arms-crossed-chest_285396-2947.jpg?_wi=2", imageAlt: "David Chen, Head of Operations", }, { id: "team-member-2", name: "Rebecca Williams", - imageSrc: "http://img.b2bpic.net/free-photo/students-career-university-concept-dreamy-beautiful-young-woman-with-red-hair-lean-bookshelf-smiling-looking-away-window-library-studying-dream-get-test-exam_197531-30461.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/students-career-university-concept-dreamy-beautiful-young-woman-with-red-hair-lean-bookshelf-smiling-looking-away-window-library-studying-dream-get-test-exam_197531-30461.jpg?_wi=2", imageAlt: "Rebecca Williams, Head of Community", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..21ca7bd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } 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"; +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 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/look-this-data_1098-14958.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/look-this-data_1098-14958.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}