Skip to content

Commit

Permalink
Add more projects
Browse files Browse the repository at this point in the history
  • Loading branch information
JortWillemsen committed Feb 24, 2024
1 parent aeb1119 commit 4796dad
Show file tree
Hide file tree
Showing 24 changed files with 1,394 additions and 120 deletions.
27 changes: 24 additions & 3 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,34 @@ declare module 'astro:content' {

type ContentEntryMap = {
"projects": {
"mystique.md": {
id: "mystique.md";
"bijleveld.mdx": {
id: "bijleveld.mdx";
slug: "bijleveld";
body: string;
collection: "projects";
data: InferEntrySchema<"projects">
} & { render(): Render[".mdx"] };
"bjorn-de-sturler.mdx": {
id: "bjorn-de-sturler.mdx";
slug: "bjorn-de-sturler";
body: string;
collection: "projects";
data: InferEntrySchema<"projects">
} & { render(): Render[".mdx"] };
"mystique.mdx": {
id: "mystique.mdx";
slug: "mystique";
body: string;
collection: "projects";
data: InferEntrySchema<"projects">
} & { render(): Render[".md"] };
} & { render(): Render[".mdx"] };
"schatbij.mdx": {
id: "schatbij.mdx";
slug: "schatbij";
body: string;
collection: "projects";
data: InferEntrySchema<"projects">
} & { render(): Render[".mdx"] };
};

};
Expand Down
Loading

0 comments on commit 4796dad

Please sign in to comment.