Skip to content

Commit

Permalink
Refactor frontend code (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethankyle360 committed Jun 19, 2023
1 parent 5eef97e commit 7c31761
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions frontend/public/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/static/media/logo.8216231d.png" />
<!-- Document metadata -->
<meta charset="utf-8" /> <!-- Specify character encoding -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Self-hosted instance of SheetAble" />

<!-- Page title and icon -->
<title>SheetAble</title>
<link rel="icon" href="/static/media/logo.8216231d.png" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.png" />

<!-- External stylesheets -->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link
href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />

<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap"
rel="stylesheet"
Expand All @@ -27,10 +34,10 @@
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;700&display=swap"
rel="stylesheet"
/>
<title>SheetAble</title>
</head>
<body>
<!-- Display a message for users who have JavaScript disabled -->
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div id="root"></div> <!-- Main content container -->
</body>
</html>

0 comments on commit 7c31761

Please sign in to comment.