Prettier works!

This commit is contained in:
Lee Robinson
2023-10-01 10:28:52 -05:00
parent 8806b9c6c7
commit d255138f02
10 changed files with 41 additions and 59 deletions

View File

@@ -59,7 +59,7 @@ export default async function Footer() {
<p>Designed in California</p>
<p className="md:ml-auto">
<a href="https://vercel.com" className="text-black dark:text-white">
Crafted by Vercel
Crafted by Vercel
</a>
</p>
</div>

View File

@@ -19,7 +19,11 @@ export default function FilterList({ list, title }: { list: ListItem[]; title?:
return (
<>
<nav>
{title ? <h3 className="hidden text-xs text-neutral-500 dark:text-neutral-400 md:block">{title}</h3> : null}
{title ? (
<h3 className="hidden text-xs text-neutral-500 dark:text-neutral-400 md:block">
{title}
</h3>
) : null}
<ul className="hidden md:block">
<FilterItemList list={list} />
</ul>