20 lines
781 B
HTML
20 lines
781 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="h-100" lang="en" data-bs-theme="dark">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
<meta name="theme-color" content="#983744" />
|
||
|
<meta
|
||
|
name="description"
|
||
|
content="The super rad way to check your grades"
|
||
|
/>
|
||
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||
|
<title>Bearly Passing</title>
|
||
|
</head>
|
||
|
<body class="d-flex flex-column h-100">
|
||
|
<!-- These tags need to be duplicated or the header won't be at the bottom of the screen. This is cursed.-->
|
||
|
<div id="root" class="d-flex flex-column h-100"></div>
|
||
|
</body>
|
||
|
</html>
|