Spaces:
Build error
Build error
Head meta (#77)
Browse files* update wording
* add basic meta
- src/app.html +6 -0
- src/lib/components/chat/ChatIntroduction.svelte +2 -2
- static/thumbnail.png +0 -0
src/app.html
CHANGED
@@ -4,6 +4,12 @@
|
|
4 |
<meta charset="utf-8" />
|
5 |
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
6 |
<meta name="viewport" content="width=device-width" />
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
%sveltekit.head%
|
8 |
</head>
|
9 |
<body data-sveltekit-preload-data="hover" class="dark:bg-gray-900">
|
|
|
4 |
<meta charset="utf-8" />
|
5 |
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
6 |
<meta name="viewport" content="width=device-width" />
|
7 |
+
<title>HuggingChat</title>
|
8 |
+
<meta
|
9 |
+
name="description"
|
10 |
+
content="Making the best open source AI chat models available to everyone."
|
11 |
+
/>
|
12 |
+
<meta property="og:image" content="%sveltekit.assets%/thumbnail.png" />
|
13 |
%sveltekit.head%
|
14 |
</head>
|
15 |
<body data-sveltekit-preload-data="hover" class="dark:bg-gray-900">
|
src/lib/components/chat/ChatIntroduction.svelte
CHANGED
@@ -16,8 +16,8 @@
|
|
16 |
<Logo classNames="mr-1 text-yellow-400 text-4xl" />
|
17 |
HuggingChat
|
18 |
</div>
|
19 |
-
<p class="text-
|
20 |
-
Making the best open AI chat models available to everyone.
|
21 |
</p>
|
22 |
</div>
|
23 |
</div>
|
|
|
16 |
<Logo classNames="mr-1 text-yellow-400 text-4xl" />
|
17 |
HuggingChat
|
18 |
</div>
|
19 |
+
<p class="text-base text-gray-600 dark:text-gray-400">
|
20 |
+
Making the best open source AI chat models available to everyone.
|
21 |
</p>
|
22 |
</div>
|
23 |
</div>
|
static/thumbnail.png
ADDED