diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..89a11ca --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:24-alpine as build +RUN npm i +RUN npm run docs:dev + +FROM nginx:1-alpine as prod +COPY --from=build ./.vitepress/dist/ /usr/share/nginx/html diff --git a/index.md b/index.md new file mode 100644 index 0000000..608c587 --- /dev/null +++ b/index.md @@ -0,0 +1,21 @@ +--- +# https://vitepress.dev/reference/default-theme-home-page +layout: home + +hero: + name: "hackmi.ch" + text: "🛠️ Maintenance" + tagline: Checkout our new 🚀 features after Maintenance + actions: + - theme: brand + text: Check status for information + link: https://status.hackmi.ch + +features: + - title: 🧑‍💻️ New Locations + details: Migrating to new locations like FRA, AMS, USA + - title: 🔗 Dashboard + SSO + details: All new services have our own SSO integration with custom dashboard + - title: 🔥 Hot migrations + details: Swapping Locations on the Fly or mirror it for load balancing +--- \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..7e1e5ae --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "scripts": { + "docs:dev": "vitepress dev", + "docs:build": "vitepress build", + "docs:preview": "vitepress preview" + }, + "dependencies": { + "vitepress": "^1.6.3" + } +}