- 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
205 B
TypeScript
11 lines
205 B
TypeScript
import type { Metadata } from "next"
|
|
import { GamesClient } from "./games-client"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Games",
|
|
}
|
|
|
|
export default function GamesPage() {
|
|
return <GamesClient />
|
|
}
|