Merge version_2 into main #4
50
src/app/marketplace/page.tsx
Normal file
50
src/app/marketplace/page.tsx
Normal file
@@ -0,0 +1,50 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
|
||||
export default function MarketplacePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="none"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Marketplace", id: "/marketplace" },
|
||||
{ name: "Notes", id: "/notes" },
|
||||
{ name: "Support", id: "#faq" }
|
||||
]}
|
||||
brandName="KnowledgeLink"
|
||||
/>
|
||||
<ProductCardThree
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "p1", name: "Modern Biology 101", price: "$45", imageSrc: "http://img.b2bpic.net/free-vector/template-business-leaflet-with-abstract-design_23-2147633371.jpg" },
|
||||
{ id: "p2", name: "Statistics Workbook", price: "$30", imageSrc: "http://img.b2bpic.net/free-photo/view-school-elements-assortment_23-2149001171.jpg" },
|
||||
{ id: "p3", name: "Advanced Economics Guide", price: "$55", imageSrc: "http://img.b2bpic.net/free-vector/party-flyer-template-with-colored-geometric-shapes_23-2147604530.jpg" }
|
||||
]}
|
||||
title="Marketplace"
|
||||
description="Browse all available textbooks and study materials from our community."
|
||||
/>
|
||||
<FooterCard logoText="KnowledgeLink" copyrightText="© 2025 KnowledgeLink Ecosystem" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
43
src/app/notes/page.tsx
Normal file
43
src/app/notes/page.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
|
||||
export default function NotesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="none"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Marketplace", id: "/marketplace" },
|
||||
{ name: "Notes", id: "/notes" },
|
||||
{ name: "Support", id: "#faq" }
|
||||
]}
|
||||
brandName="KnowledgeLink"
|
||||
/>
|
||||
<div className="container mx-auto py-20 px-6">
|
||||
<h1 className="text-4xl font-bold mb-8">Your Notes</h1>
|
||||
<p className="text-lg mb-12">Create, edit, and manage your collaborative study notes here.</p>
|
||||
<div className="bg-card p-8 rounded-xl border border-border min-h-[400px] flex items-center justify-center">
|
||||
<p className="text-muted-foreground">Note management interface coming soon.</p>
|
||||
</div>
|
||||
</div>
|
||||
<FooterCard logoText="KnowledgeLink" copyrightText="© 2025 KnowledgeLink Ecosystem" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user