11import localFont from "next/font/local" ;
2+ import Head from "next/head" ;
23import Footer from "@/components/footer" ;
34import ListTable from "@/components/list-table" ;
45import Header from "@/components/header" ;
@@ -14,14 +15,41 @@ const geistMono = localFont({
1415export 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