File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
import type { Metadata } from 'next' ;
2
+ import logoIcon from '../../public/Logo Icon.png' ;
3
+ import ogImage from '../../public/OG image.png' ;
2
4
import './globals.css' ;
3
5
import './markdown.css' ;
4
6
@@ -9,6 +11,10 @@ export default function RootLayout({
9
11
} > ) {
10
12
return (
11
13
< html lang = "en" >
14
+ < head >
15
+ < link rel = "icon" href = { logoIcon . src } sizes = "any" />
16
+ < link rel = "apple-touch-icon" href = { logoIcon . src } sizes = "any" />
17
+ </ head >
12
18
< body className = "antialiased" >
13
19
{ children }
14
20
< div className = "container max-w-3xl mx-auto p-4 text-sm text-gray-400" >
@@ -31,4 +37,7 @@ export const metadata: Metadata = {
31
37
default : 'React Multi Page Form' ,
32
38
} ,
33
39
description : 'A multi-page form library for React' ,
40
+ openGraph : {
41
+ images : [ ogImage . src ] ,
42
+ } ,
34
43
} ;
You can’t perform that action at this time.
0 commit comments