adding index page

This commit is contained in:
Sheldan
2024-03-20 21:40:19 +01:00
parent 13695a0dde
commit 8a3fb75dd0
2 changed files with 11 additions and 1 deletions

View File

@@ -31,9 +31,11 @@ jobs:
- name: Orbits Install dependencies
run: npm install
working-directory: orbits
- name: Build
- name: Orbits Build
run: npx vite build
working-directory: orbits
- name: Move index
run: cp index.html dist/
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact

8
index.html Normal file
View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>Canvas stuff</title>
</head>
<body>
<a href="/orbits">Simulation of the solar system</a>
</body>
</html>