File size: 464 Bytes
4233884
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Head from 'next/head';
import ChatWindow from '../components/ChatWindow';

export default function Home() {
  return (
    <div>
      <Head>
        <title>Replika Clone - Virtual Companion</title>
        <meta name="description" content="Chat with your virtual companion" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <link rel="icon" href="/favicon.ico" />
      </Head>
      <ChatWindow />
    </div>
  );
}