Skip to content

Commit 068820a

Browse files
init. fix opengraph blank pag
1 parent 413a0c4 commit 068820a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/src/app/layout.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { cn } from "@/lib/utils"
66
import Header from "@/components/Header";
77
import Footer from "@/components/Footer";
88
import dynamic from 'next/dynamic'
9+
import Head from "next/head";
910

1011
const fontSans = FontSans({
1112
subsets: ["latin"],
@@ -14,6 +15,9 @@ const fontSans = FontSans({
1415
export const metadata: Metadata = {
1516
title: "Suggest Feature - Share and Vote on Feature Requests",
1617
description: "Suggest Feature is a platform for sharing and voting on feature requests.",
18+
openGraph: {
19+
"images": "https://suggestfeature.com/logo.jpeg"
20+
}
1721
};
1822

1923
export default function RootLayout({
@@ -27,7 +31,6 @@ export default function RootLayout({
2731
return (
2832
<html lang="en">
2933
<CrispWithNoSSR />
30-
3134
<body
3235
className={cn(
3336
"min-h-screen bg-background font-sans antialiased",

0 commit comments

Comments
 (0)