diff --git a/web/src/pages/browse.astro b/web/src/pages/browse.astro new file mode 100644 index 0000000..eeb143f --- /dev/null +++ b/web/src/pages/browse.astro @@ -0,0 +1,154 @@ +--- + +import Layout from '@layouts/Layout.astro'; +import SectionList from '@components/things/SectionList.astro'; + +import { fetchData } from '@utils/fetch-data'; + +const categories = (await fetchData())?.categories; +--- + + + + + Browse + + + + + {categories.map((category) => ( + + + + ))} + + + + Nothing found 😢 + Try a deep search instead + + + + + + +
Nothing found 😢
Try a deep search instead