We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be2592e commit 8e35506Copy full SHA for 8e35506
docs/public/Logo Icon.png
16.1 KB
docs/public/Logo.png
20.9 KB
docs/public/OG image.png
32.8 KB
docs/src/app/layout.tsx
@@ -1,4 +1,6 @@
1
import type { Metadata } from 'next';
2
+import logoIcon from '../../public/Logo Icon.png';
3
+import ogImage from '../../public/OG image.png';
4
import './globals.css';
5
import './markdown.css';
6
@@ -9,6 +11,10 @@ export default function RootLayout({
9
11
}>) {
10
12
return (
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>
18
<body className="antialiased">
19
{children}
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
};
0 commit comments