File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
packages/nextjs/app/stats Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1+ import { getMetadata } from "~~/utils/scaffold-eth/getMetadata" ;
2+
3+ export const metadata = getMetadata ( {
4+ title : "Stats" ,
5+ description : "Check out the stats for the BuidlGuidl CTF" ,
6+ } ) ;
7+
8+ export default function StatsLayout ( { children } : { children : React . ReactNode } ) {
9+ return children ;
10+ }
Original file line number Diff line number Diff line change 22
33import { useQuery } from "@tanstack/react-query" ;
44import type { NextPage } from "next" ;
5- import { getMetadata } from "~~/utils/scaffold-eth/getMetadata" ;
65
76const thStyles = "whitespace-nowrap px-3 py-3.5" ;
87const tdStyles = "whitespace-nowrap px-3 py-4" ;
98
10- export const metadata = getMetadata ( {
11- title : "Stats" ,
12- description : "Check out the stats for the BuidlGuidl CTF" ,
13- } ) ;
14-
159const Stats : NextPage = ( ) => {
1610 const {
1711 isPending,
You can’t perform that action at this time.
0 commit comments