Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
bin/
dist/

# Frontend
**/node_modules
**/build
**/dist

# Go
vendor/
**/*.local
7 changes: 7 additions & 0 deletions peerprep-frontend/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# PeerPrep Frontend

## Run
```bash
npm i
npm run dev
```
14 changes: 14 additions & 0 deletions peerprep-frontend/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PeerPrep</title>
</head>
<body class="bg-white text-gray-900">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading