-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.29 KB
/
index.html
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
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>reChatGPT</title>
<meta name="description" content="reChatGPT is an open-source interface for OpenAI models including GPT-3.5 Turbo and GPT-4. Built with Vue3 and primerCSS for a responsive and customizable experience.">
<meta property="og:title" content="reChatGPT: OpenAI Chat Interface">
<meta property="og:description" content="Seamless and customizable interface for interacting with OpenAI models like GPT-3.5 Turbo and GPT-4, built with Vue3 and primerCSS.">
<meta property="og:url" content="https://rechatgpt.badgerhobbs.com">
<meta property="og:type" content="website">
<link rel="canonical" href="https://rechatgpt.badgerhobbs.com">
<link rel="icon" href="./src/assets/favicon.png">
<meta name="keywords" content="reChatGPT, OpenAI, ChatGPT, GPT-3.5 Turbo, GPT-4, Vue3, primerCSS, JavaScript, Open Source, AI Chatbot, Responsive Design">
<meta name="robots" content="index, follow">
<style>
p,
code,
li {
font-size: 14px !important;
}
</style>
</head>
<body class="page">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>