Skip to content

Commit

Permalink
Added: Basic development frontend with Web3 wallet plugin support
Browse files Browse the repository at this point in the history
While the main development of the web frontend is planned for later (#13), a frontend is needed for development purposes now. This development frontend will be used to assist in the backend development.
  • Loading branch information
regcs authored Sep 10, 2023
2 parents 7b2d5dc + fe17ec1 commit b65b74f
Show file tree
Hide file tree
Showing 84 changed files with 7,447 additions and 18,660 deletions.
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
*.pnp
*.pnp.js

# testing
coverage
snippets
initializer
tmp

# production
build

# misc
*.DS_Store
*.env.local
*.env.development.local
*.env.test.local
*.env.production.local

# log files
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# secrets
testnet.env
13 changes: 0 additions & 13 deletions backend/.gitignore

This file was deleted.

12 changes: 6 additions & 6 deletions frontend/.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# dependencies
/node_modules
/.pnp
.pnp.js
*.pnp.js

# testing
/coverage
Expand All @@ -16,11 +16,11 @@
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
*.DS_Store
*.env.local
*.env.development.local
*.env.test.local
*.env.production.local

npm-debug.log*
yarn-debug.log*
Expand Down
1 change: 0 additions & 1 deletion frontend/.env

This file was deleted.

23 changes: 0 additions & 23 deletions frontend/.gitignore

This file was deleted.

136 changes: 0 additions & 136 deletions frontend/README.md

This file was deleted.

Binary file added frontend/favicon.ico
Binary file not shown.
18 changes: 18 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Lama Dev Admin Dashboard" />
<title>React Admin Dashboard</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit b65b74f

Please sign in to comment.