adding some sort of articles section

This commit is contained in:
2023-12-22 23:55:42 +01:00
parent 11b3185cea
commit 6e2374e528
22 changed files with 114 additions and 229 deletions

View File

@ -0,0 +1,8 @@
export const load = async ({ fetch }) => {
const response = await fetch(`/api/guides`);
const guides = await response.json();
return {
guides
};
};