Calendar Page
This commit is contained in:
@@ -25,6 +25,7 @@ import VerifyYouPages from "./views/VerifyYouPages";
|
||||
|
||||
import RemindersPage from './views/RemindersPage';
|
||||
import TrackingPage from "./views/TrackingPage";
|
||||
import CalendarPage from "./views/CalendarPage";
|
||||
|
||||
export default function Routers() {
|
||||
return (
|
||||
@@ -56,6 +57,7 @@ export default function Routers() {
|
||||
<Route exact path="/my-collection" element={<MyCollection />} />
|
||||
<Route exact path="/reminders" element={<RemindersPage />} />
|
||||
<Route exact path="/tracking" element={<TrackingPage />} />
|
||||
<Route exact path="/calendar" element={<CalendarPage />} />
|
||||
<Route
|
||||
exact
|
||||
path="/my-collection/collection-item"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 122 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 122 KiB |
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
import Layout from "../Partials/Layout";
|
||||
import CalendarTable from "./CalendarTable";
|
||||
|
||||
export default function Calendar() {
|
||||
return (
|
||||
<>
|
||||
<Layout>
|
||||
<div className="history-wrapper w-full mb-10">
|
||||
<div className="main-wrapper w-full">
|
||||
<CalendarTable />
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -166,159 +166,6 @@ export default function RightSideBar() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* top-creator */}
|
||||
<div className="top-creator bg-white dark:bg-dark-white rounded-2xl p-8 2xl:w-[268px] w-full 2xl:mb-10 2xl:border-none border ">
|
||||
{/* heading */}
|
||||
<div className="heading flex justify-between items-center mb-3.5">
|
||||
<h3 className="text-xl font-bold text-dark-gray dark:text-white">
|
||||
Recent
|
||||
</h3>
|
||||
|
||||
</div>
|
||||
|
||||
<div className="creator-list">
|
||||
<div className="item flex justify-between items-center mb-4">
|
||||
{/* image */}
|
||||
<div className="w-10 h-10 rounded-full">
|
||||
<img src={topCreator1} alt="top" />
|
||||
</div>
|
||||
{/* name */}
|
||||
<div>
|
||||
<p className="text-dark-gray dark:text-white text-base font-bold">
|
||||
Albert Flores
|
||||
</p>
|
||||
<p className="text-xs text-thin-light-gray">@broklinslam_75</p>
|
||||
</div>
|
||||
{/* action */}
|
||||
<div className="flex items-center space-x-2">
|
||||
<button
|
||||
type="button"
|
||||
className="add-button w-6 h-6 flex justify-center items-center bg-purple rounded-full"
|
||||
>
|
||||
<Icons name="add-people" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
className="delete-button w-6 h-6 flex justify-center items-center p-1 bg-light-purple dark:bg-dark-light-purple text-purple rounded-full"
|
||||
>
|
||||
<Icons name="close" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="item flex justify-between items-center mb-4">
|
||||
{/* image */}
|
||||
<div className="w-10 h-10 rounded-full">
|
||||
<img src={topCreator2} alt="top" />
|
||||
</div>
|
||||
{/* name */}
|
||||
<div>
|
||||
<p className="text-dark-gray dark:text-white text-base font-bold">
|
||||
Albert Flores
|
||||
</p>
|
||||
<p className="text-xs text-thin-light-gray">@broklinslam_75</p>
|
||||
</div>
|
||||
{/* action */}
|
||||
<div className="flex items-center space-x-2">
|
||||
<button
|
||||
type="button"
|
||||
className="add-button w-6 h-6 flex justify-center items-center bg-purple rounded-full"
|
||||
>
|
||||
<Icons name="add-people" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
className="delete-button w-6 h-6 flex justify-center items-center p-1 bg-light-purple dark:bg-dark-light-purple text-purple rounded-full"
|
||||
>
|
||||
<Icons name="close" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="item flex justify-between items-center mb-4">
|
||||
{/* image */}
|
||||
<div className="w-10 h-10 rounded-full">
|
||||
<img src={topCreator3} alt="top" />
|
||||
</div>
|
||||
{/* name */}
|
||||
<div>
|
||||
<p className="text-dark-gray dark:text-white text-base font-bold">
|
||||
Albert Flores
|
||||
</p>
|
||||
<p className="text-xs text-thin-light-gray">@broklinslam_75</p>
|
||||
</div>
|
||||
{/* action */}
|
||||
<div className="flex items-center space-x-2">
|
||||
<button
|
||||
type="button"
|
||||
className="add-button w-6 h-6 flex justify-center items-center bg-purple rounded-full"
|
||||
>
|
||||
<Icons name="add-people" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
className="delete-button w-6 h-6 flex justify-center items-center p-1 bg-light-purple dark:bg-dark-light-purple text-purple rounded-full"
|
||||
>
|
||||
<Icons name="close" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="item flex justify-between items-center mb-4">
|
||||
{/* image */}
|
||||
<div className="w-10 h-10 rounded-full">
|
||||
<img src={topCreator4} alt="top" />
|
||||
</div>
|
||||
{/* name */}
|
||||
<div>
|
||||
<p className="text-dark-gray dark:text-white text-base font-bold">
|
||||
Albert Flores
|
||||
</p>
|
||||
<p className="text-xs text-thin-light-gray">@broklinslam_75</p>
|
||||
</div>
|
||||
{/* action */}
|
||||
<div className="flex items-center space-x-2">
|
||||
<button
|
||||
type="button"
|
||||
className="add-button w-6 h-6 flex justify-center items-center bg-purple rounded-full"
|
||||
>
|
||||
<Icons name="add-people" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
className="delete-button w-6 h-6 flex justify-center items-center p-1 bg-light-purple dark:bg-dark-light-purple text-purple rounded-full"
|
||||
>
|
||||
<Icons name="close" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="item flex justify-between items-center mb-4">
|
||||
{/* image */}
|
||||
<div className="w-10 h-10 rounded-full">
|
||||
<img src={topCreator5} alt="top" />
|
||||
</div>
|
||||
{/* name */}
|
||||
<div>
|
||||
<p className="text-dark-gray dark:text-white text-base font-bold">
|
||||
Albert Flores
|
||||
</p>
|
||||
<p className="text-xs text-thin-light-gray">@broklinslam_75</p>
|
||||
</div>
|
||||
{/* action */}
|
||||
<div className="flex items-center space-x-2">
|
||||
<button
|
||||
type="button"
|
||||
className="add-button w-6 h-6 flex justify-center items-center bg-purple rounded-full"
|
||||
>
|
||||
<Icons name="add-people" />
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
className="delete-button w-6 h-6 flex justify-center items-center p-1 bg-light-purple dark:bg-dark-light-purple text-purple rounded-full"
|
||||
>
|
||||
<Icons name="close" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* top-platform */}
|
||||
<div className="top-platform bg-white dark:bg-dark-white rounded-2xl p-8 2xl:w-[268px] w-full 2xl:mb-10 2xl:border-none border ">
|
||||
{/* heading */}
|
||||
|
||||
@@ -131,7 +131,7 @@ export default function Sidebar({ sidebar, action, logoutModalHandler }) {
|
||||
>
|
||||
Reminders
|
||||
<span className="absolute left-24 -top-1 text-sm flex justify-center items-center w-5 h-5 primary-gradient rounded-full text-white">
|
||||
19
|
||||
0
|
||||
</span>
|
||||
</span>
|
||||
</NavLink>
|
||||
@@ -153,15 +153,12 @@ export default function Sidebar({ sidebar, action, logoutModalHandler }) {
|
||||
}`}
|
||||
>
|
||||
Tracking
|
||||
<span className="absolute left-24 -top-1 text-sm flex justify-center items-center w-5 h-5 primary-gradient rounded-full text-white">
|
||||
19
|
||||
</span>
|
||||
</span>
|
||||
</NavLink>
|
||||
</li>
|
||||
<li className="item group">
|
||||
<NavLink
|
||||
to="/active-bids"
|
||||
to="/calendar"
|
||||
className={`nav-item flex items-center ${
|
||||
((navData) => (navData.isActive ? "active" : ""),
|
||||
sidebar ? "justify-start space-x-3.5" : "justify-center")
|
||||
@@ -176,9 +173,6 @@ export default function Sidebar({ sidebar, action, logoutModalHandler }) {
|
||||
}`}
|
||||
>
|
||||
Calendar
|
||||
<span className="absolute left-24 -top-1 text-sm flex justify-center items-center w-5 h-5 primary-gradient rounded-full text-white">
|
||||
19
|
||||
</span>
|
||||
</span>
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import Calendar from "../components/Calendar";
|
||||
|
||||
export default function CalendarPage() {
|
||||
return (
|
||||
<>
|
||||
<Calendar />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user