File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
src/pages/project-showcase Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ import {
2020} from "@/components/ui/pagination" ;
2121import { useThirdwebClient } from "@/constants/thirdweb.client" ;
2222import { resolveSchemeWithErrorHandler } from "@/lib/resolveSchemeWithErrorHandler" ;
23+ import { getAbsoluteUrl } from "lib/vercel-utils" ;
24+ import { NextSeo } from "next-seo" ;
2325import Image from "next/image" ;
2426import Link from "next/link" ;
2527import { useState } from "react" ;
@@ -206,6 +208,18 @@ export function ProjectShowcaseUI() {
206208export default function ProjectShowcasePage ( ) {
207209 return (
208210 < ThirdwebProvider >
211+ < NextSeo
212+ openGraph = { {
213+ images : [
214+ {
215+ url : `${ getAbsoluteUrl ( ) } /assets/showcase/og_image.png` ,
216+ width : 450 ,
217+ height : 236 ,
218+ } ,
219+ ] ,
220+ } }
221+ />
222+
209223 < ProjectShowcaseUI />
210224 < AppFooter />
211225 </ ThirdwebProvider >
You can’t perform that action at this time.
0 commit comments