Skip to content

Commit

Permalink
Tidy project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
slhmy committed Aug 11, 2024
1 parent c3b8cfc commit 3dedd41
Show file tree
Hide file tree
Showing 99 changed files with 2,573 additions and 4,673 deletions.
5 changes: 3 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"bradlc.vscode-tailwindcss"
"bradlc.vscode-tailwindcss",
"gruntfuggly.todo-tree"
]
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ npm run start:mock

### Lints & Formats

Please run the following before commit:
Please run the following commands before commit:

```sh
npm run prettier:check
Expand Down
46 changes: 23 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/katex-dist/katex.min.css" />
<link rel="icon" href="/images/oj-lab-icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<script analytics></script>
<link rel="apple-touch-icon" href="/images/logo192.png" />
<!--

<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/katex-dist/katex.min.css" />
<link rel="icon" href="/images/oj-lab-icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Web site created using create-react-app" />
<script analytics></script>
<link rel="apple-touch-icon" href="/images/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />
<title>Online Judge Lab</title>
</head>
<body>
<script type="module" src="/src/index.tsx"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
<link rel="manifest" href="/manifest.json" />
<title>Online Judge Lab</title>
</head>

<body>
<script type="module" src="/src/Index.tsx"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
Expand All @@ -33,5 +32,6 @@
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
</body>

</html>
Loading

0 comments on commit 3dedd41

Please sign in to comment.