Spaces:
Sleeping
Sleeping
Upload pages/index.js with huggingface_hub
Browse files- pages/index.js +16 -0
pages/index.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Head from 'next/head';
|
| 2 |
+
import ChatWindow from '../components/ChatWindow';
|
| 3 |
+
|
| 4 |
+
export default function Home() {
|
| 5 |
+
return (
|
| 6 |
+
<div>
|
| 7 |
+
<Head>
|
| 8 |
+
<title>Replika Clone - Virtual Companion</title>
|
| 9 |
+
<meta name="description" content="Chat with your virtual companion" />
|
| 10 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 11 |
+
<link rel="icon" href="/favicon.ico" />
|
| 12 |
+
</Head>
|
| 13 |
+
<ChatWindow />
|
| 14 |
+
</div>
|
| 15 |
+
);
|
| 16 |
+
}
|