mirror of
https://github.com/deiucanta/chatpad.git
synced 2026-03-11 09:04:31 +00:00
28 lines
742 B
HTML
28 lines
742 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Chatpad AI</title>
|
|
<meta
|
|
name="description"
|
|
content="A free, open-source, and slick UI for ChatGPT"
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0, interactive-widget=resizes-content"
|
|
/>
|
|
<link rel="icon" href="./assets/favicon.png" />
|
|
<style>
|
|
.app-region-drag {
|
|
-webkit-app-region: drag;
|
|
}
|
|
.app-region-no-drag {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="index.tsx"></script>
|
|
</body>
|
|
</html>
|