Set up graphql for requests

This commit is contained in:
Quinn Hegeman
2026-03-07 18:51:46 +01:00
parent 770198bb5b
commit f914b7db1c
6 changed files with 1202 additions and 538 deletions

5
astro/src/types/common/images.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
type PhotoProps = {
url: string;
width: number;
height: number;
}