page.tsx 241 B

1234567891011
  1. import { Playground } from "@/components/playground";
  2. import { PAGE_TITLES } from "@/lib/page-titles";
  3. export const metadata = {
  4. title: PAGE_TITLES["playground"],
  5. };
  6. export default function PlaygroundPage() {
  7. return <Playground />;
  8. }