Skip to content

Commit 5c6486f

Browse files
committed
add app head tag
1 parent f7956a7 commit 5c6486f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

components/Heading.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import Head from "next/head";
2+
3+
export default function Heading() {
4+
return (
5+
<Head>
6+
<title>EditorSetup</title>
7+
<link rel="icon" href="/favicon.ico" />
8+
<meta
9+
name="description"
10+
content="Explore multiple font and theme pairings for Visual Studio Code that
11+
just work!"
12+
/>
13+
</Head>
14+
);
15+
}

0 commit comments

Comments
 (0)