Addreminder

This commit is contained in:
2023-01-28 22:27:03 -05:00
parent f766c19465
commit 9a269b5732
+22 -5
View File
@@ -1,12 +1,29 @@
import React from "react"; import React from 'react'
import HistoryAnalyticsCard from "../Cards/HistoryAnalyticsCard"; import HistoryAnalyticsCard from '../Cards/HistoryAnalyticsCard'
import Layout from "../Partials/Layout"; import Layout from '../Partials/Layout'
import ReminderTable from "./ReminderTable"; import ReminderTable from './ReminderTable'
import { Link } from 'react-router-dom'
export default function Reminders() { export default function Reminders() {
return ( return (
<> <>
<Layout> <Layout>
<div className="content-wrapper-profile-only w-full mb-6">
<div className="auth-tab-content relative mb-10">
<div className="lg:flex justify-between">
<div className="tab-items"></div>
<div style={{ transform: 'translateY(-22px)' }}>
<Link
to="/add-reminder"
className="btn-gradient lg:flex hidden w-[153px] h-[46px] rounded-full text-white justify-center items-center"
>
Add Reminder
</Link>
</div>
</div>
<div className="hidden lg:block w-full h-[1px] bg-[#DCD5FE] dark:bg-[#5356fb29] absolute top-[42px] left-0"></div>
</div>
</div>
<div className="history-wrapper w-full mb-10"> <div className="history-wrapper w-full mb-10">
<div className="main-wrapper w-full"> <div className="main-wrapper w-full">
<ReminderTable /> <ReminderTable />
@@ -14,5 +31,5 @@ export default function Reminders() {
</div> </div>
</Layout> </Layout>
</> </>
); )
} }