Browse Source

fix playground og (#138)

Chris Tate 4 months ago
parent
commit
64c889221e
1 changed files with 2 additions and 5 deletions
  1. 2 5
      apps/web/app/playground/page.tsx

+ 2 - 5
apps/web/app/playground/page.tsx

@@ -1,10 +1,7 @@
 import { Playground } from "@/components/playground";
+import { pageMetadata } from "@/lib/page-metadata";
 
-import { PAGE_TITLES } from "@/lib/page-titles";
-
-export const metadata = {
-  title: PAGE_TITLES["playground"],
-};
+export const metadata = pageMetadata("playground");
 
 export default function PlaygroundPage() {
   return <Playground />;