File size: 252 Bytes
0e0987b
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Head from "next/head";

export default function Home() {
  return (
    <>
      <Head>
        <title>web-llm-embed</title>
        <meta name="description" content="Web LLM Embed" />
      </Head>
      <div>web-llm-embed</div>
    </>
  );
}