chore: add two column layout for birds c9629a3c
more birds = more fun
Steve · 2026-05-01 23:57 1 file(s) · +1 −1
src/pages/birds.astro +1 −1
14 14
			<h1 class="title">Birds</h1>
15 15
			<p class="mt-2 text-sm text-gray-400">{birds.length} species observed</p>
16 16
		</div>
17 -
		<div class="flex w-full flex-col">
17 +
		<div class="flex w-full flex-col sm:grid sm:grid-cols-2">
18 18
			{birds.map((bird) => (
19 19
				<a
20 20
					href={`https://www.allaboutbirds.org/guide/${bird.commonName.replace(/ /g, "_")}`}