- 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
243 B
TypeScript
11 lines
243 B
TypeScript
import type { Metadata } from "next"
|
|
import { AnalyticsClient } from "@/components/manage/analytics-client"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Analytics",
|
|
}
|
|
|
|
export default function AnalyticsPage() {
|
|
return <AnalyticsClient />
|
|
}
|