mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 09:48:32 +00:00
22 lines
870 B
XML
22 lines
870 B
XML
export default function Head() {
|
|
return (
|
|
<>
|
|
<title>Taxonomy</title>
|
|
<meta charSet="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta
|
|
name="description"
|
|
content="An open source application built using the new router, server components and everything new in Next.js 13."
|
|
/>
|
|
|
|
<meta property="og:title" content="Taxonomy" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://tx.shadcn.com" />
|
|
<meta property="og:image" content="https://tx.shadcn.com/og.jpg" />
|
|
<meta name="twitter:title" content="Taxonomy" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:url" content="https://tx.shadcn.com" />
|
|
<meta name="twitter:image" content="https://tx.shadcn.com/og.jpg" />
|
|
</>
|
|
)
|
|
}
|