- Move web app into apps/web/ - Create packages/shared/ with shared types - Create plugins/decky-vault/ scaffold - Root package.json manages workspaces only
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import type { Metadata } from "next"
|
|
import { BenchmarksClient } from "./benchmarks-client"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Benchmarks",
|
|
}
|
|
|
|
export default function BenchmarksPage() {
|
|
return <BenchmarksClient />
|
|
}
|