From 00dcf15dd874ae2898dcc4dbb41c0094584c6b92 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 18 Feb 2024 19:34:01 +0000 Subject: [PATCH] Added route for viewing everything, all at once --- web/src/pages/browse.astro | 154 +++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 web/src/pages/browse.astro 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

+ +
+ + + +
+

Nothing found 😢

+

Try a deep search instead

+
+
+ + + + +