Feat/import export (#136)

* added import/export functionality
This commit is contained in:
Daniel
2023-08-10 12:16:44 -04:00
committed by GitHub
parent 159075b38b
commit d008c441b7
16 changed files with 352 additions and 93 deletions
+6 -6
View File
@@ -66,7 +66,9 @@ export default function Sidebar({ className }: { className?: string }) {
icon={faChartSimple}
className={`w-8 h-8 drop-shadow text-sky-500`}
/>
<p className="text-sky-700 text-xs font-semibold">Dashboard</p>
<p className="text-sky-700 text-xs xl:text-sm font-semibold">
Dashboard
</p>
</Link>
<Link
@@ -81,9 +83,7 @@ export default function Sidebar({ className }: { className?: string }) {
icon={faLink}
className={`w-8 h-8 drop-shadow text-sky-500`}
/>
<p className="text-sky-700 text-xs font-semibold">
<span className="hidden xl:inline-block">All</span> Links
</p>
<p className="text-sky-700 text-xs xl:text-sm font-semibold">Links</p>
</Link>
<Link
@@ -96,8 +96,8 @@ export default function Sidebar({ className }: { className?: string }) {
icon={faFolder}
className={`w-8 h-8 drop-shadow text-sky-500`}
/>
<p className="text-sky-700 text-xs font-semibold">
<span className="hidden xl:inline-block">All</span> Collections
<p className="text-sky-700 text-xs xl:text-sm font-semibold">
Collections
</p>
</Link>
</div>