diff --git a/.gitignore b/.gitignore index 7a4d299..6a6804a 100644 --- a/.gitignore +++ b/.gitignore @@ -19,4 +19,3 @@ venv /pnpm-lock.yaml -/astro_blog diff --git a/website_astro/.gitignore b/website/.gitignore similarity index 100% rename from website_astro/.gitignore rename to website/.gitignore diff --git a/website_astro/README.md b/website/README.md similarity index 100% rename from website_astro/README.md rename to website/README.md diff --git a/website_astro/astro.config.mjs b/website/astro.config.mjs similarity index 100% rename from website_astro/astro.config.mjs rename to website/astro.config.mjs diff --git a/website_astro/package.json b/website/package.json similarity index 100% rename from website_astro/package.json rename to website/package.json diff --git a/website_astro/pnpm-lock.yaml b/website/pnpm-lock.yaml similarity index 100% rename from website_astro/pnpm-lock.yaml rename to website/pnpm-lock.yaml diff --git a/website_astro/public/berlin.webp b/website/public/berlin.webp similarity index 100% rename from website_astro/public/berlin.webp rename to website/public/berlin.webp diff --git a/website_astro/public/favicon.ico b/website/public/favicon.ico similarity index 100% rename from website_astro/public/favicon.ico rename to website/public/favicon.ico diff --git a/website_astro/public/github.svg b/website/public/github.svg similarity index 100% rename from website_astro/public/github.svg rename to website/public/github.svg diff --git a/website_astro/public/logo.jpg b/website/public/logo.jpg similarity index 100% rename from website_astro/public/logo.jpg rename to website/public/logo.jpg diff --git a/website_astro/public/scripts/donate.js b/website/public/scripts/donate.js similarity index 100% rename from website_astro/public/scripts/donate.js rename to website/public/scripts/donate.js diff --git a/website_astro/public/scripts/map.js b/website/public/scripts/map.js similarity index 100% rename from website_astro/public/scripts/map.js rename to website/public/scripts/map.js diff --git a/website_astro/public/x.svg b/website/public/x.svg similarity index 100% rename from website_astro/public/x.svg rename to website/public/x.svg diff --git a/website_astro/src/components/Card.astro b/website/src/components/Card.astro similarity index 100% rename from website_astro/src/components/Card.astro rename to website/src/components/Card.astro diff --git a/website_astro/src/components/Donate.astro b/website/src/components/Donate.astro similarity index 100% rename from website_astro/src/components/Donate.astro rename to website/src/components/Donate.astro diff --git a/website_astro/src/components/Logo.astro b/website/src/components/Logo.astro similarity index 100% rename from website_astro/src/components/Logo.astro rename to website/src/components/Logo.astro diff --git a/website_astro/src/components/Map.astro b/website/src/components/Map.astro similarity index 100% rename from website_astro/src/components/Map.astro rename to website/src/components/Map.astro diff --git a/website_astro/src/components/StyleUrlBug.astro b/website/src/components/StyleUrlBug.astro similarity index 100% rename from website_astro/src/components/StyleUrlBug.astro rename to website/src/components/StyleUrlBug.astro diff --git a/website_astro/src/content/how_to_use/custom_styles.md b/website/src/content/how_to_use/custom_styles.md similarity index 100% rename from website_astro/src/content/how_to_use/custom_styles.md rename to website/src/content/how_to_use/custom_styles.md diff --git a/website_astro/src/content/how_to_use/leaflet.md b/website/src/content/how_to_use/leaflet.md similarity index 100% rename from website_astro/src/content/how_to_use/leaflet.md rename to website/src/content/how_to_use/leaflet.md diff --git a/website_astro/src/content/how_to_use/mapbox.md b/website/src/content/how_to_use/mapbox.md similarity index 100% rename from website_astro/src/content/how_to_use/mapbox.md rename to website/src/content/how_to_use/mapbox.md diff --git a/website_astro/src/content/how_to_use/maplibre.md b/website/src/content/how_to_use/maplibre.md similarity index 100% rename from website_astro/src/content/how_to_use/maplibre.md rename to website/src/content/how_to_use/maplibre.md diff --git a/website_astro/src/content/how_to_use/mobile.md b/website/src/content/how_to_use/mobile.md similarity index 100% rename from website_astro/src/content/how_to_use/mobile.md rename to website/src/content/how_to_use/mobile.md diff --git a/website_astro/src/content/how_to_use/self_hosting.md b/website/src/content/how_to_use/self_hosting.md similarity index 100% rename from website_astro/src/content/how_to_use/self_hosting.md rename to website/src/content/how_to_use/self_hosting.md diff --git a/website_astro/src/content/index/donate.md b/website/src/content/index/donate.md similarity index 100% rename from website_astro/src/content/index/donate.md rename to website/src/content/index/donate.md diff --git a/website_astro/src/content/index/rest.md b/website/src/content/index/rest.md similarity index 100% rename from website_astro/src/content/index/rest.md rename to website/src/content/index/rest.md diff --git a/website_astro/src/content/index/whatis.md b/website/src/content/index/whatis.md similarity index 100% rename from website_astro/src/content/index/whatis.md rename to website/src/content/index/whatis.md diff --git a/website_astro/src/env.d.ts b/website/src/env.d.ts similarity index 100% rename from website_astro/src/env.d.ts rename to website/src/env.d.ts diff --git a/website_astro/src/layouts/Layout.astro b/website/src/layouts/Layout.astro similarity index 100% rename from website_astro/src/layouts/Layout.astro rename to website/src/layouts/Layout.astro diff --git a/website_astro/src/pages/index.astro b/website/src/pages/index.astro similarity index 100% rename from website_astro/src/pages/index.astro rename to website/src/pages/index.astro diff --git a/website_astro/src/pages/privacy.md b/website/src/pages/privacy.md similarity index 100% rename from website_astro/src/pages/privacy.md rename to website/src/pages/privacy.md diff --git a/website_astro/src/pages/quick_start.astro b/website/src/pages/quick_start.astro similarity index 100% rename from website_astro/src/pages/quick_start.astro rename to website/src/pages/quick_start.astro diff --git a/website_astro/src/pages/tos.md b/website/src/pages/tos.md similarity index 100% rename from website_astro/src/pages/tos.md rename to website/src/pages/tos.md diff --git a/website_astro/src/styles/global.css b/website/src/styles/global.css similarity index 100% rename from website_astro/src/styles/global.css rename to website/src/styles/global.css diff --git a/website_astro/tsconfig.json b/website/tsconfig.json similarity index 100% rename from website_astro/tsconfig.json rename to website/tsconfig.json