Merge version_1 into main #1
@@ -81,7 +81,7 @@ export default function AboutPage() {
|
||||
name: "Margaret Chen",
|
||||
role: "Head Librarian",
|
||||
testimonial: "LibraryOS transformed how we manage our collection. Our staff can now focus on patron services instead of administrative tasks. The system is intuitive and the support team is fantastic.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-young-lady-talking-smartphone-near-books_23-2148042560.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-young-lady-talking-smartphone-near-books_23-2148042560.jpg?_wi=2",
|
||||
imageAlt: "Margaret Chen portrait",
|
||||
},
|
||||
{
|
||||
@@ -89,7 +89,7 @@ export default function AboutPage() {
|
||||
name: "James Rodriguez",
|
||||
role: "Library Director",
|
||||
testimonial: "We reduced checkout time by 60% after implementing LibraryOS. Our patrons love the mobile app and automated notifications. It's been a game-changer for our network.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-15972.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-15972.jpg?_wi=2",
|
||||
imageAlt: "James Rodriguez portrait",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function AboutPage() {
|
||||
name: "Sarah Williams",
|
||||
role: "Information Services Manager",
|
||||
testimonial: "The catalog management features are exceptional. We can now track resources across our entire system in real-time. The reporting tools give us insights we never had before.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-businesswoman-with-arms-crossed-smiling-happy-city_839833-9384.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-businesswoman-with-arms-crossed-smiling-happy-city_839833-9384.jpg?_wi=2",
|
||||
imageAlt: "Sarah Williams portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function ContactPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892738.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892738.jpg?_wi=3"
|
||||
imageAlt="modern library interior architectural design"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -51,10 +51,10 @@ const FeaturesPage = () => {
|
||||
title: "Book Catalog Management",
|
||||
description: "Organize and categorize your entire collection with advanced tagging, ISBN integration, and automated metadata population. Track availability in real-time across multiple branches and manage complex cataloging workflows efficiently.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/search-library-mobility-modern-vintage-reading_1421-205.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/search-library-mobility-modern-vintage-reading_1421-205.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/course-app-interface-concept_23-2148641198.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/course-app-interface-concept_23-2148641198.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -62,10 +62,10 @@ const FeaturesPage = () => {
|
||||
title: "Patron Management System",
|
||||
description: "Streamline patron registration, manage memberships, and track borrowing history with precision. Send automated notifications for holds, renewals, and due dates to keep patrons informed and engaged with your library services.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-webinar-concept_23-2147765225.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-webinar-concept_23-2147765225.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/abstract-shapes-mobile-wallpapers_23-2147656844.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/abstract-shapes-mobile-wallpapers_23-2147656844.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -73,10 +73,10 @@ const FeaturesPage = () => {
|
||||
title: "Circulation & Checkout",
|
||||
description: "Fast, intuitive checkout and return processes with intelligent queue management. Handle due dates, fines, and holds seamlessly. Support multiple check-in stations and mobile checkout capabilities for maximum flexibility.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/workout-tracker-app-interface_23-2148653680.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/workout-tracker-app-interface_23-2148653680.jpg?_wi=2",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/school-timetable-template-with-flat-design_23-2147848898.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/school-timetable-template-with-flat-design_23-2147848898.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "LibraryOS - Modern Library Management System",
|
||||
description: "Transform your library with LibraryOS - the comprehensive management system for book catalogs, patron management, and circulation. Trusted by 5000+ libraries worldwide.",
|
||||
keywords: "library management system, book catalog software, patron management, library software, digital library",
|
||||
metadataBase: new URL("https://libraryos.com"),
|
||||
alternates: {
|
||||
canonical: "https://libraryos.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "LibraryOS - Modern Library Management System",
|
||||
description: "Streamline library operations with our comprehensive management platform. Manage catalogs, patrons, and circulation seamlessly.",
|
||||
url: "https://libraryos.com",
|
||||
siteName: "LibraryOS",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg",
|
||||
alt: "LibraryOS Management Dashboard",
|
||||
},
|
||||
],
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "LibraryOS - Modern Library Management System",
|
||||
description: "Transform your library operations with intelligent management solutions",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -94,10 +94,10 @@ const HomePage = () => {
|
||||
title: "Book Catalog Management",
|
||||
description: "Organize and categorize your entire collection with advanced tagging, ISBN integration, and automated metadata population. Track availability in real-time across multiple branches.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/search-library-mobility-modern-vintage-reading_1421-205.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/search-library-mobility-modern-vintage-reading_1421-205.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/course-app-interface-concept_23-2148641198.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/course-app-interface-concept_23-2148641198.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -105,10 +105,10 @@ const HomePage = () => {
|
||||
title: "Patron Management System",
|
||||
description: "Streamline patron registration, manage memberships, and track borrowing history. Send automated notifications for holds, renewals, and due dates to keep patrons informed.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-webinar-concept_23-2147765225.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-webinar-concept_23-2147765225.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/abstract-shapes-mobile-wallpapers_23-2147656844.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/abstract-shapes-mobile-wallpapers_23-2147656844.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -116,10 +116,10 @@ const HomePage = () => {
|
||||
title: "Circulation & Checkout",
|
||||
description: "Fast, intuitive checkout and return processes. Manage due dates, fines, and holds with ease. Support multiple check-in stations and mobile checkout capabilities.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/workout-tracker-app-interface_23-2148653680.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/workout-tracker-app-interface_23-2148653680.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/school-timetable-template-with-flat-design_23-2147848898.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/school-timetable-template-with-flat-design_23-2147848898.jpg?_wi=1",
|
||||
},
|
||||
},
|
||||
]}
|
||||
@@ -163,7 +163,7 @@ const HomePage = () => {
|
||||
name: "Margaret Chen",
|
||||
role: "Head Librarian",
|
||||
testimonial: "LibraryOS transformed how we manage our collection. Our staff can now focus on patron services instead of administrative tasks. The system is intuitive and the support team is fantastic.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-young-lady-talking-smartphone-near-books_23-2148042560.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-young-lady-talking-smartphone-near-books_23-2148042560.jpg?_wi=1",
|
||||
imageAlt: "Margaret Chen portrait",
|
||||
},
|
||||
{
|
||||
@@ -171,7 +171,7 @@ const HomePage = () => {
|
||||
name: "James Rodriguez",
|
||||
role: "Library Director",
|
||||
testimonial: "We reduced checkout time by 60% after implementing LibraryOS. Our patrons love the mobile app and automated notifications. It's been a game-changer for our network.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-15972.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-15972.jpg?_wi=1",
|
||||
imageAlt: "James Rodriguez portrait",
|
||||
},
|
||||
{
|
||||
@@ -179,7 +179,7 @@ const HomePage = () => {
|
||||
name: "Sarah Williams",
|
||||
role: "Information Services Manager",
|
||||
testimonial: "The catalog management features are exceptional. We can now track resources across our entire system in real-time. The reporting tools give us insights we never had before.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-businesswoman-with-arms-crossed-smiling-happy-city_839833-9384.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-businesswoman-with-arms-crossed-smiling-happy-city_839833-9384.jpg?_wi=1",
|
||||
imageAlt: "Sarah Williams portrait",
|
||||
},
|
||||
{
|
||||
@@ -265,7 +265,7 @@ const HomePage = () => {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892738.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892738.jpg?_wi=1"
|
||||
imageAlt="Library contact image"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -79,7 +79,7 @@ const PricingPage = () => {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892738.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-futuristic-school-classroom_23-2150892738.jpg?_wi=2"
|
||||
imageAlt="Pricing consultation image"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user