Add src/app/library/page.tsx

This commit is contained in:
2026-04-04 06:55:38 +00:00
parent 87b83efa85
commit 3bdf3bbd16

38
src/app/library/page.tsx Normal file
View File

@@ -0,0 +1,38 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterCard from '@/components/sections/footer/FooterCard';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function LibraryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Library", id: "/library" },
{ name: "Pricing", id: "/pricing" },
]}
brandName="BookFlix"
/>
<div className="pt-32 pb-20">
<ProductCardThree
title="eBook Catalog"
description="Explore our curated collection of premium titles."
gridVariant="bento-grid"
animationType="slide-up"
products={[
{ id: "1", name: "Tech Trends 2025", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/modern-tablet-books-library_23-2147845958.jpg" },
{ id: "2", name: "Mastering Design", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/diverse-staff-pitching-proposals-stakeholders-mockup-business-meeting-dark_482257-136152.jpg" },
{ id: "3", name: "AI Secrets", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/smartphone-book-high-angle_23-2149765817.jpg" }
]}
/>
</div>
<FooterCard logoText="BookFlix" />
</ReactLenis>
</ThemeProvider>
);
}