feat(dashboard): add date difference and timezone conversion tools for dashboard

This commit is contained in:
Willie Zutz 2025-07-21 23:49:09 -06:00
parent 3d6aa983dc
commit 1f78b94243
13 changed files with 1143 additions and 909 deletions

View file

@ -8,7 +8,7 @@ const Layout = ({ children }: { children: React.ReactNode }) => {
return (
<main className="lg:pl-20 bg-light-primary dark:bg-dark-primary min-h-screen">
<div className={isDashboard ? "mx-4" : "max-w-screen-lg lg:mx-auto mx-4"}>
<div className={isDashboard ? 'mx-4' : 'max-w-screen-lg lg:mx-auto mx-4'}>
{children}
</div>
</main>