added links to related docs

This commit is contained in:
2024-01-05 12:46:51 +01:00
parent eea2ca1492
commit 4ffe2de6ea

View File

@@ -18,9 +18,6 @@ export const Page = async () => {
return (
<main className="flex min-h-screen flex-col p-6 bg-base-300">
<p>https://tailwindcss.com/docs/font-weight</p>
<p>https://heroicons.com/</p>
<AddMonthButton />
{
locations.map((location, ix, array) => {
@@ -39,6 +36,10 @@ export const Page = async () => {
)
})
}
<h2 className='text-xl text-sky-400/75 font-semibold mt-4'>Docs</h2>
<p><a href="https://tailwindcss.com/docs/" target="_blank">tailwindcss.com</a></p>
<p><a href="https://heroicons.com/" target="_blank">heroicons.com</a></p>
<p><a href="https://daisyui.com/components/" target="_blank">daisyui.com</a></p>
</main>
);
}