Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
29 changes: 29 additions & 0 deletions react-app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React HN</title>
<meta name="description" content="A Hacker News client built with React, React Query and Vite" />

<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="React HN" />
<meta name="twitter:description" content="A Hacker News client built with React, React Query and Vite" />

<meta property="og:title" content="React HN" />
<meta property="og:type" content="website" />
<meta property="og:description" content="A Hacker News client built with React, React Query and Vite" />

<meta name="theme-color" content="#b92b27" />
<meta name="msapplication-TileColor" content="#b92b27" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />

<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading