diff --git a/demo/.gitignore b/demo/.gitignore
new file mode 100644
index 0000000..02f6e50
--- /dev/null
+++ b/demo/.gitignore
@@ -0,0 +1,19 @@
+# build output
+dist/
+
+# dependencies
+node_modules/
+
+# logs
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+
+# environment variables
+.env
+.env.production
+
+# macOS-specific files
+.DS_Store
diff --git a/demo/.vscode/extensions.json b/demo/.vscode/extensions.json
new file mode 100644
index 0000000..22a1505
--- /dev/null
+++ b/demo/.vscode/extensions.json
@@ -0,0 +1,4 @@
+{
+ "recommendations": ["astro-build.astro-vscode"],
+ "unwantedRecommendations": []
+}
diff --git a/demo/.vscode/launch.json b/demo/.vscode/launch.json
new file mode 100644
index 0000000..d642209
--- /dev/null
+++ b/demo/.vscode/launch.json
@@ -0,0 +1,11 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "command": "./node_modules/.bin/astro dev",
+ "name": "Development server",
+ "request": "launch",
+ "type": "node-terminal"
+ }
+ ]
+}
diff --git a/demo/README.md b/demo/README.md
new file mode 100644
index 0000000..da4f712
--- /dev/null
+++ b/demo/README.md
@@ -0,0 +1,45 @@
+# Astro Starter Kit: Minimal
+
+```
+npm create astro@latest -- --template minimal
+```
+
+[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
+
+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
+
+## 🚀 Project Structure
+
+Inside of your Astro project, you'll see the following folders and files:
+
+```
+/
+├── public/
+├── src/
+│ └── pages/
+│ └── index.astro
+└── package.json
+```
+
+Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
+
+There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
+
+Any static assets, like images, can be placed in the `public/` directory.
+
+## 🧞 Commands
+
+All commands are run from the root of the project, from a terminal:
+
+| Command | Action |
+| :--------------------- | :----------------------------------------------- |
+| `npm install` | Installs dependencies |
+| `npm run dev` | Starts local dev server at `localhost:3000` |
+| `npm run build` | Build your production site to `./dist/` |
+| `npm run preview` | Preview your build locally, before deploying |
+| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
+| `npm run astro --help` | Get help using the Astro CLI |
+
+## 👀 Want to learn more?
+
+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
diff --git a/demo/astro.config.mjs b/demo/astro.config.mjs
new file mode 100644
index 0000000..882e651
--- /dev/null
+++ b/demo/astro.config.mjs
@@ -0,0 +1,4 @@
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({});
diff --git a/demo/package.json b/demo/package.json
new file mode 100644
index 0000000..3e39117
--- /dev/null
+++ b/demo/package.json
@@ -0,0 +1,29 @@
+{
+ "name": "@example/minimal",
+ "type": "module",
+ "version": "0.0.1",
+ "private": true,
+ "scripts": {
+ "dev": "astro dev",
+ "start": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "astro": "astro"
+ },
+ "dependencies": {
+ "astro": "^1.4.2"
+ },
+ "description": "``` npm create astro@latest -- --template minimal ```",
+ "main": "index.js",
+ "devDependencies": {},
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/ayoayco/astro-github-stats.git"
+ },
+ "author": "Ayo Ayco",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/ayoayco/astro-github-stats/issues"
+ },
+ "homepage": "https://github.com/ayoayco/astro-github-stats#readme"
+}
diff --git a/demo/public/favicon.svg b/demo/public/favicon.svg
new file mode 100644
index 0000000..0f39062
--- /dev/null
+++ b/demo/public/favicon.svg
@@ -0,0 +1,13 @@
+
diff --git a/demo/src/env.d.ts b/demo/src/env.d.ts
new file mode 100644
index 0000000..f964fe0
--- /dev/null
+++ b/demo/src/env.d.ts
@@ -0,0 +1 @@
+///