2023-02-04 17:17:17 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2023-02-08 09:15:47 -05:00
|
|
|
<meta charset="utf-8" />
|
2023-02-07 10:26:19 -05:00
|
|
|
<title>ChatGPT Clone</title>
|
2023-02-08 09:15:47 -05:00
|
|
|
<link
|
|
|
|
|
rel="shortcut icon"
|
|
|
|
|
href="#"
|
|
|
|
|
/>
|
|
|
|
|
<meta
|
|
|
|
|
name="viewport"
|
|
|
|
|
content="width=device-width, initial-scale=1"
|
|
|
|
|
/>
|
|
|
|
|
<script
|
|
|
|
|
defer
|
|
|
|
|
src="main.js"
|
|
|
|
|
></script>
|
|
|
|
|
<!-- <script>
|
|
|
|
|
// It's best to inline this in `head` to avoid FOUC (flash of unstyled content) when changing pages or themes
|
|
|
|
|
if (
|
|
|
|
|
localStorage.getItem('color-theme') === 'dark' ||
|
|
|
|
|
(!('color-theme' in localStorage) &&
|
|
|
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches)
|
|
|
|
|
) {
|
|
|
|
|
document.documentElement.classList.add('dark');
|
|
|
|
|
} else {
|
|
|
|
|
document.documentElement.classList.remove('dark');
|
|
|
|
|
}
|
|
|
|
|
</script> -->
|
|
|
|
|
</head>
|
2023-02-04 17:17:17 -05:00
|
|
|
<body>
|
|
|
|
|
<div id="root"></div>
|
2023-02-08 09:15:47 -05:00
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
type="text/javascript"
|
|
|
|
|
src="main.js"
|
|
|
|
|
></script>
|
2023-02-04 17:17:17 -05:00
|
|
|
</body>
|
2023-02-08 09:15:47 -05:00
|
|
|
</html>
|