-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 1.18 KB
/
index.html
File metadata and controls
25 lines (22 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="color-scheme" content="light dark" />
<meta name="theme-color" content="#1677ff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#0a0a0a" media="(prefers-color-scheme: dark)" />
<meta name="description" content="React + Vite template with TypeScript, Redux Toolkit, Ant Design, and React Router. Production-ready baseline for new Pandatech frontend projects." />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Open Graph (set canonical href + og:url in production via env injection) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="React Vite Template" />
<meta property="og:description" content="React + Vite + TypeScript + Redux Toolkit + Ant Design starter template." />
<title>React Vite Template</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
</body>
</html>