Skip to content

Commit b292550

Browse files
committed
add meta tags
1 parent b33d2b7 commit b292550

File tree

1 file changed

+37
-9
lines changed

1 file changed

+37
-9
lines changed

pages/index.tsx

Lines changed: 37 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import localFont from "next/font/local";
2+
import Head from "next/head";
23
import Footer from "@/components/footer";
34
import ListTable from "@/components/list-table";
45
import Header from "@/components/header";
@@ -14,14 +15,41 @@ const geistMono = localFont({
1415
export default function Home() {
1516
const data = useSiteStore((state) => state.getProducts());
1617
return (
17-
<div
18-
className={`${geistMono.variable} min-h-screen flex flex-col items-center justify-items-center font-[family-name:var(--font-geist-mono)]`}
19-
>
20-
<main className="flex flex-col flex-grow w-full">
21-
<Header />
22-
<ListTable columns={columns} data={data} />
23-
</main>
24-
<Footer />
25-
</div>
18+
<>
19+
<Head>
20+
<title>
21+
llms.txt directory - Find llms.txt files across the web
22+
</title>
23+
<meta
24+
name="description"
25+
content="A directory of llms.txt files from various products and services, following the llmstxt.org standard."
26+
/>
27+
<meta
28+
name="viewport"
29+
content="width=device-width, initial-scale=1"
30+
/>
31+
<meta property="og:title" content="llms.txt directory" />
32+
<meta
33+
property="og:description"
34+
content="Find and explore llms.txt files from various products and services."
35+
/>
36+
<meta property="og:type" content="website" />
37+
<meta name="twitter:card" content="summary_large_image" />
38+
<meta name="twitter:title" content="llms.txt directory" />
39+
<meta
40+
name="twitter:description"
41+
content="Find and explore llms.txt files from various products and services."
42+
/>
43+
</Head>
44+
<div
45+
className={`${geistMono.variable} min-h-screen flex flex-col items-center justify-items-center font-[family-name:var(--font-geist-mono)]`}
46+
>
47+
<main className="flex flex-col flex-grow w-full">
48+
<Header />
49+
<ListTable columns={columns} data={data} />
50+
</main>
51+
<Footer />
52+
</div>
53+
</>
2654
);
2755
}

0 commit comments

Comments
 (0)