Skip to content

Commit 66faeb3

Browse files
committed
Use LandingLayout
1 parent 2a96c7d commit 66faeb3

File tree

1 file changed

+18
-16
lines changed
  • apps/dashboard/src/pages/project-showcase

1 file changed

+18
-16
lines changed

apps/dashboard/src/pages/project-showcase/index.tsx

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
"use client";
2-
3-
import { AppFooter } from "@/components/blocks/app-footer";
42
import { Badge } from "@/components/ui/badge";
53
import { Button } from "@/components/ui/button";
64
import {
@@ -20,8 +18,8 @@ import {
2018
} from "@/components/ui/pagination";
2119
import { useThirdwebClient } from "@/constants/thirdweb.client";
2220
import { resolveSchemeWithErrorHandler } from "@/lib/resolveSchemeWithErrorHandler";
21+
import { LandingLayout } from "components/landing-pages/layout";
2322
import { getAbsoluteUrl } from "lib/vercel-utils";
24-
import { NextSeo } from "next-seo";
2523
import Image from "next/image";
2624
import Link from "next/link";
2725
import { useState } from "react";
@@ -208,20 +206,24 @@ export function ProjectShowcaseUI() {
208206
export 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
}

0 commit comments

Comments
 (0)