37 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023, Jay Wang, David Munechika, Seongmin Lee, Polo Chau
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/.github/workflows/gh-pages.yml:
--------------------------------------------------------------------------------
1 | name: Deploy GitHub Pages
2 |
3 | on:
4 | push:
5 | branches: [main]
6 | pull_request:
7 | branches: [main]
8 |
9 | jobs:
10 | deploy:
11 | runs-on: ubuntu-22.04
12 | strategy:
13 | matrix:
14 | node-version: [16]
15 | os: [ubuntu-latest]
16 | permissions:
17 | contents: write
18 | concurrency:
19 | group: ${{ github.workflow }}-${{ github.ref }}
20 | steps:
21 | - uses: actions/checkout@v3
22 |
23 | - uses: actions/setup-node@v3
24 | with:
25 | node-version: ${{ matrix.node-version }}
26 |
27 | - name: Install dependencies
28 | run: npm install
29 |
30 | - name: Build
31 | run: npm run build:github
32 |
33 | - name: Deploy with gh-pages
34 | run: |
35 | git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
36 | npx gh-pages -u "github-actions-bot " -m "Deploy $(git log '--format=format:%H' main -1)" -d ./gh-page
37 | if: ${{ github.ref == 'refs/heads/main' }}
38 | env:
39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40 |
--------------------------------------------------------------------------------
/src/imgs/icon-point.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/src/imgs/icon-play-solid.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
14 |
--------------------------------------------------------------------------------
/src/imgs/icon-plus.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
12 |
--------------------------------------------------------------------------------
/src/components/supernova/SuperNOVA.svelte:
--------------------------------------------------------------------------------
1 |
11 |
12 |
15 |
16 |