Merge version_1 into main #1
@@ -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={[
|
||||
{
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +86,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -70,7 +70,7 @@ export default function HomePage() {
|
||||
href: "#features",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-showing-tablet-camera_23-2147850757.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-showing-tablet-camera_23-2147850757.jpg?_wi=1"
|
||||
imageAlt="MBSI Library Platform"
|
||||
mediaAnimation="slide-up"
|
||||
background={{
|
||||
@@ -221,7 +221,7 @@ export default function HomePage() {
|
||||
name: "Fatima Ahmed",
|
||||
role: "Student",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-beautiful-confident-young-businesswoman_23-2147943798.jpg",
|
||||
"http://img.b2bpic.net/free-photo/close-up-beautiful-confident-young-businesswoman_23-2147943798.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -231,7 +231,7 @@ export default function HomePage() {
|
||||
name: "Karim Hassan",
|
||||
role: "Book Enthusiast",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/bride-groom-run-through-forest-wedding-photo-shoot_1328-5309.jpg",
|
||||
"http://img.b2bpic.net/free-photo/bride-groom-run-through-forest-wedding-photo-shoot_1328-5309.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -241,7 +241,7 @@ export default function HomePage() {
|
||||
name: "Leila Mahmoud",
|
||||
role: "Literature Lover",
|
||||
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",
|
||||
"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=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -251,7 +251,7 @@ export default function HomePage() {
|
||||
name: "Ali Rashid",
|
||||
role: "University Student",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg",
|
||||
"http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -261,7 +261,7 @@ export default function HomePage() {
|
||||
name: "Sara Mohammed",
|
||||
role: "Professional",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg",
|
||||
"http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -271,7 +271,7 @@ export default function HomePage() {
|
||||
name: "Omar Ibrahim",
|
||||
role: "Knowledge Seeker",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/stylish-handsome-caucasian-man-posing-looking-camera-isolated-dark-background_613910-15062.jpg",
|
||||
"http://img.b2bpic.net/free-photo/stylish-handsome-caucasian-man-posing-looking-camera-isolated-dark-background_613910-15062.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -331,7 +331,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="FAQ Illustration"
|
||||
faqs={[
|
||||
{
|
||||
|
||||
@@ -104,7 +104,7 @@ const ReadBookPage = () => {
|
||||
quote: "Reading on MBSI with the AI assistant is incredible. I understand complex concepts so much better now.",
|
||||
name: "Fatima Ahmed",
|
||||
role: "Student",
|
||||
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=2",
|
||||
imageAlt: "young woman student portrait professional",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ const ReadBookPage = () => {
|
||||
quote: "The highlighted audio narration helped me focus better. I've completed 3 books this month!",
|
||||
name: "Karim Hassan",
|
||||
role: "Book Enthusiast",
|
||||
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=2",
|
||||
imageAlt: "young man professional portrait photo",
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@ const ReadBookPage = () => {
|
||||
quote: "Discussing books with other VIP readers in the forum has enhanced my understanding immensely.",
|
||||
name: "Leila Mahmoud",
|
||||
role: "Literature Lover",
|
||||
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=2",
|
||||
imageAlt: "woman professional portrait headshot",
|
||||
},
|
||||
{
|
||||
@@ -131,7 +131,7 @@ const ReadBookPage = () => {
|
||||
quote: "Using MBSI Library for my university coursework has made studying much more interactive and engaging.",
|
||||
name: "Ali Rashid",
|
||||
role: "University Student",
|
||||
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=2",
|
||||
imageAlt: "professional man portrait headshot",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ const ReadBookPage = () => {
|
||||
quote: "I can't put this app down. The reading features are so intuitive, and the AI is always helpful.",
|
||||
name: "Sara Mohammed",
|
||||
role: "Professional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg?_wi=2",
|
||||
imageAlt: "professional woman portrait photo",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ const ReadBookPage = () => {
|
||||
quote: "The VIP membership is worth every penny. Audio books with highlighting changed my reading habits forever.",
|
||||
name: "Omar Ibrahim",
|
||||
role: "Knowledge Seeker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-handsome-caucasian-man-posing-looking-camera-isolated-dark-background_613910-15062.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-handsome-caucasian-man-posing-looking-camera-isolated-dark-background_613910-15062.jpg?_wi=2",
|
||||
imageAlt: "man professional portrait avatar photo",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -57,7 +57,7 @@ export default function RegisterPage() {
|
||||
href: "#features",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-showing-tablet-camera_23-2147850757.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-showing-tablet-camera_23-2147850757.jpg?_wi=2"
|
||||
imageAlt="MBSI Library Platform"
|
||||
mediaAnimation="slide-up"
|
||||
background={{
|
||||
|
||||
Reference in New Issue
Block a user