Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SonaBIMSandroDASILVA committed Oct 3, 2024
0 parents commit b0a9583
Show file tree
Hide file tree
Showing 10 changed files with 4,871 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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?
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# viewer-larivot

[Edit in StackBlitz next generation editor ⚡️](https://stackblitz.com/~/github.com/SonaBIMSandroDASILVA/viewer-larivot)
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Viewer LARIVOT - BETA 1.0</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>

<body>
<div id="renderer" style="width:100%;height:100%;left:0px;top:0px;position:absolute" div>

<!-- Spinner et message de chargement -->
<div id="loading-spinner" style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center;">
<div id="spinner"></div>
<p>Loading...</p>
</div>

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

0 comments on commit b0a9583

Please sign in to comment.