diff --git a/src/app/forum/page.tsx b/src/app/forum/page.tsx index df42a59..6d5f7a2 100644 --- a/src/app/forum/page.tsx +++ b/src/app/forum/page.tsx @@ -109,7 +109,7 @@ export default function ForumPage() { quote: "The forum discussions have enriched my reading experience immensely. I've discovered so many new perspectives and made friends who share my love for literature.", name: "Fatima Ahmed", role: "VIP Member", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-confident-young-businesswoman_23-2147943798.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-confident-young-businesswoman_23-2147943798.jpg?_wi=3", }, { id: "2", @@ -117,7 +117,7 @@ export default function ForumPage() { quote: "The forum helped me find my reading tribe. We've started our own book club and meet virtually every month to discuss our latest reads.", name: "Karim Hassan", role: "Book Club Lead", - imageSrc: "http://img.b2bpic.net/free-photo/bride-groom-run-through-forest-wedding-photo-shoot_1328-5309.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/bride-groom-run-through-forest-wedding-photo-shoot_1328-5309.jpg?_wi=3", }, { id: "3", @@ -125,7 +125,7 @@ export default function ForumPage() { quote: "Participating in forum discussions has made me a more thoughtful reader. I love analyzing books with other members and learning new interpretations.", name: "Leila Mahmoud", role: "Active Contributor", - imageSrc: "http://img.b2bpic.net/free-photo/young-student-girl-glasses-with-pigtails-white-shirt-looking-front-with-serious-confident-expression-standing-orange-wall_141793-48075.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-student-girl-glasses-with-pigtails-white-shirt-looking-front-with-serious-confident-expression-standing-orange-wall_141793-48075.jpg?_wi=3", }, { id: "4", @@ -133,7 +133,7 @@ export default function ForumPage() { quote: "The forum has literary experts who provide deep insights into complex books. Their guidance has significantly improved my understanding of literature.", name: "Ali Rashid", role: "Aspiring Author", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=3", }, ]} /> @@ -151,7 +151,7 @@ export default function ForumPage() { useInvertedBackground={false} mediaAnimation="slide-up" faqsAnimation="opacity" - imageSrc="http://img.b2bpic.net/free-vector/faq-concept_23-2148158507.jpg" + imageSrc="http://img.b2bpic.net/free-vector/faq-concept_23-2148158507.jpg?_wi=2" imageAlt="FAQ Illustration" faqs={[ { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..0ad8378 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,69 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_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 { Manrope } from "next/font/google"; -import { DM_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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "MBSI Library - Free Books, AI Learning & Community Forum", + description: "Explore thousands of free and premium books with AI-powered learning assistant, earn coins through reading missions, and join our vibrant community forum. Download MBSI Library today.", + keywords: "digital library, online books, reading app, AI learning, community forum, coin system", + metadataBase: new URL("https://mbsilbrary.com"), + alternates: { + canonical: "https://mbsilbrary.com", + }, + openGraph: { + title: "MBSI Library - Your Personal Reading Platform", + description: "Discover a complete reading ecosystem with free books, VIP premium content, AI assistance, and community engagement.", + url: "https://mbsilbrary.com", + siteName: "MBSI Library", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-man-showing-tablet-camera_23-2147850757.jpg", + alt: "MBSI Library Platform", + } + ], + }, + twitter: { + card: "summary_large_image", + title: "MBSI Library - Free Books & Learning Community", + description: "Join thousands reading, learning, and growing together on MBSI Library.", + images: [ + "http://img.b2bpic.net/free-photo/young-man-showing-tablet-camera_23-2147850757.jpg" + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +72,9 @@ export default function RootLayout({ return ( - + {children}