Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsadetsky committed Dec 11, 2023
1 parent 0e6abe7 commit 8b7644b
Show file tree
Hide file tree
Showing 13 changed files with 1,118 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.env
Empty file added .prettierrc
Empty file.
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sagittarius</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✨</text></svg>">
<style>
body {
line-height: 1.4;
font-size: 16px;
padding: 0 10px;
margin: 50px auto;
max-width: 650px;
}
#maincontent {
max-width:42em;margin:15 auto;
}
</style>
</head>
<body>
<button style='font-size: 24px;' id='letsGo'>Start</button>

<video autoplay playsinline webkit-playsinline muted hidden></video>
<canvas id='canvas' width='800' height='600'></canvas>

<div id='debugImages' style='display:none'>
</div>

<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 8b7644b

Please sign in to comment.