|
1 | | -export default function About() { |
| 1 | +import { ArrowLeft } from 'lucide-react' |
| 2 | +import { Button } from '@/components/ui/button' |
| 3 | +import Link from 'next/link' |
| 4 | + |
| 5 | +export default function AboutPage() { |
2 | 6 | return ( |
3 | | - <div className="container mx-auto px-4"> |
4 | | - <h1 className="text-3xl font-bold">About</h1> |
5 | | - <p className="mt-4"> |
6 | | - Librarease is a simple and powerful library management system. It is |
7 | | - designed to help libraries manage their collections, track their |
8 | | - borrowings, and communicate with their users. |
9 | | - </p> |
| 7 | + <div className=""> |
| 8 | + <div className="container mx-auto px-4 py-12 max-w-3xl"> |
| 9 | + {/* Header */} |
| 10 | + <div className="mb-10"> |
| 11 | + <Button variant="ghost" asChild className="mb-4 -ml-4"> |
| 12 | + <Link href="/"> |
| 13 | + <ArrowLeft className="mr-2 h-4 w-4" /> |
| 14 | + Back to Home |
| 15 | + </Link> |
| 16 | + </Button> |
| 17 | + |
| 18 | + <div className="flex items-center gap-3 mb-4"> |
| 19 | + <h1 className="text-3xl font-bold leading-tight bg-gradient-to-r from-foreground via-foreground to-foreground/80 bg-clip-text text-transparent"> |
| 20 | + About LibrarEase |
| 21 | + </h1> |
| 22 | + </div> |
| 23 | + </div> |
| 24 | + |
| 25 | + {/* Main Content */} |
| 26 | + <p className="text-lg text-foreground/80 mb-6"> |
| 27 | + LibrarEase is a modern library management platform built to make |
| 28 | + libraries easier to run and more enjoyable to use. Designed for |
| 29 | + libraries of all sizes, it provides a single place to manage books, |
| 30 | + memberships, subscriptions, and borrowing activities. |
| 31 | + </p> |
| 32 | + <p className="text-lg text-foreground/80 mb-6"> |
| 33 | + For librarians, LibrarEase offers powerful tools to organize |
| 34 | + collections, track borrow and return histories, and manage memberships |
| 35 | + with ease. Libraries can assign roles such as admin and staff, send |
| 36 | + notifications, and stay connected with users through automated emails. |
| 37 | + Features like QR-based borrowing and returning ensure smooth |
| 38 | + day-to-day operations. The built-in dashboard provides useful charts |
| 39 | + and insights, helping librarians understand trends and make |
| 40 | + data-driven decisions. |
| 41 | + </p> |
| 42 | + <p className="text-lg text-foreground/80 mb-6"> |
| 43 | + For readers and members, LibrarEase makes borrowing simple and |
| 44 | + accessible. Users can subscribe through their library memberships, |
| 45 | + receive timely notifications, and enjoy a seamless borrowing |
| 46 | + experience through the user app. |
| 47 | + </p> |
| 48 | + <p className="text-lg text-foreground/80"> |
| 49 | + Fast, reliable, and easy to use, LibrarEase brings together everything |
| 50 | + needed to create a better library experience for both librarians and |
| 51 | + readers. |
| 52 | + </p> |
| 53 | + </div> |
10 | 54 | </div> |
11 | 55 | ) |
12 | 56 | } |
0 commit comments