diff --git a/src/content.config.ts b/src/content.config.ts deleted file mode 100644 index 6e97e59..0000000 --- a/src/content.config.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { defineCollection, z } from "astro:content"; -import { glob } from "astro/loaders"; - -const blog = defineCollection({ - loader: glob({ base: "./src/content/posts", pattern: "**/*.{md,mdx}" }), - schema: z.object({ - title: z.string(), - description: z.string().optional(), - pubDate: z.coerce.date(), - modifiedDate: z.coerce.date().optional(), - wantsPanel: z.boolean().default(true) - }) -}); - -export const collections = { blog }; \ No newline at end of file diff --git a/src/content/posts/myExperiencesWithAstro.md b/src/content/posts/myExperiencesWithAstro.md deleted file mode 100644 index 4c1b724..0000000 --- a/src/content/posts/myExperiencesWithAstro.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "My experiences with Astro" -description: "" -pubDate: "18 Feb 2026 21:07" ---- - - # What is Astro? -Astro is a static site generator that allows you to combine components together to quickly put together a website. It's somewhat similar to something like React, but instead of having the bloat of all the javascript it generates, Astro outputs a static HTML website. The only javascript it includes is what you write in `