diff --git a/src/app/page.tsx b/src/app/page.tsx index 282d56a..a60dd50 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import { BookOpen } from "lucide-react"; export default function LandingPage() { @@ -33,21 +33,13 @@ export default function LandingPage() { @@ -56,37 +48,24 @@ export default function LandingPage() {
@@ -113,21 +92,11 @@ export default function LandingPage() { useInvertedBackground={true} negativeCard={{ items: [ - "Limited Hours", - "Restricted Access", - "Offline Only", - "Old Equipment", - "Static Archives", - ], + "Limited Hours", "Restricted Access", "Offline Only", "Old Equipment", "Static Archives"], }} positiveCard={{ items: [ - "24/7 Digital Hub", - "Accessible Collections", - "Expert Research Support", - "Technology Labs", - "Community Workshops", - ], + "24/7 Digital Hub", "Accessible Collections", "Expert Research Support", "Technology Labs", "Community Workshops"], }} title="Library Services" description="Discover our comprehensive range of services tailored to meet the needs of all our visitors." @@ -142,35 +111,15 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "c1", - name: "Research Journals", - price: "Access Now", - imageSrc: "http://img.b2bpic.net/free-photo/pretty-student-bookshelves_23-2147678853.jpg", - }, + id: "c1", name: "Research Journals", price: "Access Now", imageSrc: "http://img.b2bpic.net/free-photo/pretty-student-bookshelves_23-2147678853.jpg"}, { - id: "c2", - name: "Classic Fiction", - price: "Borrow Now", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-having-bookstore-date_23-2150334597.jpg", - }, + id: "c2", name: "Classic Fiction", price: "Borrow Now", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-couple-having-bookstore-date_23-2150334597.jpg"}, { - id: "c3", - name: "Digital Archives", - price: "Access Now", - imageSrc: "http://img.b2bpic.net/free-photo/kids-being-part-sunday-school_23-2149582950.jpg", - }, + id: "c3", name: "Digital Archives", price: "Access Now", imageSrc: "http://img.b2bpic.net/free-photo/kids-being-part-sunday-school_23-2149582950.jpg"}, { - id: "c4", - name: "Children's Literature", - price: "Borrow Now", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-student-holding-books-library_23-2148727868.jpg", - }, + id: "c4", name: "Children's Literature", price: "Borrow Now", imageSrc: "http://img.b2bpic.net/free-photo/front-view-student-holding-books-library_23-2148727868.jpg"}, { - id: "c5", - name: "Language Programs", - price: "Enroll Now", - imageSrc: "http://img.b2bpic.net/free-photo/friends-learning-study-group_23-2149257190.jpg", - }, + id: "c5", name: "Language Programs", price: "Enroll Now", imageSrc: "http://img.b2bpic.net/free-photo/friends-learning-study-group_23-2149257190.jpg"}, ]} title="Curated Collections" description="Explore our vast library of resources spanning academia, fiction, and digital media." @@ -184,31 +133,16 @@ export default function LandingPage() { useInvertedBackground={true} metrics={[ { - id: "m1", - value: "50K+", - title: "Books Borrowed", - items: [ - "Physical books", - "Digital copies", - ], + id: "m1", value: "50K+", title: "Books Borrowed", items: [ + "Physical books", "Digital copies"], }, { - id: "m2", - value: "120+", - title: "Annual Events", - items: [ - "Workshops", - "Community talks", - ], + id: "m2", value: "120+", title: "Annual Events", items: [ + "Workshops", "Community talks"], }, { - id: "m3", - value: "3K+", - title: "Active Members", - items: [ - "Students", - "Families", - ], + id: "m3", value: "3K+", title: "Active Members", items: [ + "Students", "Families"], }, ]} title="Impact at a Glance" @@ -217,50 +151,21 @@ export default function LandingPage() {
-
-
-
); -} +} \ No newline at end of file