File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed
apps/dashboard/src/pages/project-showcase Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change 11"use client" ;
2-
3- import { AppFooter } from "@/components/blocks/app-footer" ;
42import { Badge } from "@/components/ui/badge" ;
53import { Button } from "@/components/ui/button" ;
64import {
@@ -20,8 +18,8 @@ import {
2018} from "@/components/ui/pagination" ;
2119import { useThirdwebClient } from "@/constants/thirdweb.client" ;
2220import { resolveSchemeWithErrorHandler } from "@/lib/resolveSchemeWithErrorHandler" ;
21+ import { LandingLayout } from "components/landing-pages/layout" ;
2322import { getAbsoluteUrl } from "lib/vercel-utils" ;
24- import { NextSeo } from "next-seo" ;
2523import Image from "next/image" ;
2624import Link from "next/link" ;
2725import { useState } from "react" ;
@@ -208,20 +206,24 @@ export function ProjectShowcaseUI() {
208206export default function ProjectShowcasePage ( ) {
209207 return (
210208 < ThirdwebProvider >
211- < NextSeo
212- openGraph = { {
213- images : [
214- {
215- url : `${ getAbsoluteUrl ( ) } /assets/showcase/og_image.png` ,
216- width : 450 ,
217- height : 236 ,
218- } ,
219- ] ,
209+ < LandingLayout
210+ seo = { {
211+ title : "Project Showcase | Built on thirdweb" ,
212+ description :
213+ "Discover the latest web3 apps and games built on thirdweb." ,
214+ openGraph : {
215+ images : [
216+ {
217+ url : `${ getAbsoluteUrl ( ) } /assets/showcase/og_image.png` ,
218+ width : 1200 ,
219+ height : 630 ,
220+ } ,
221+ ] ,
222+ } ,
220223 } }
221- />
222-
223- < ProjectShowcaseUI />
224- < AppFooter />
224+ >
225+ < ProjectShowcaseUI />
226+ </ LandingLayout >
225227 </ ThirdwebProvider >
226228 ) ;
227229}
You can’t perform that action at this time.
0 commit comments