diff --git a/src/pages/studio/[[...index]].tsx b/src/pages/studio/[[...index]].tsx index 70b82ac..6e194a5 100644 --- a/src/pages/studio/[[...index]].tsx +++ b/src/pages/studio/[[...index]].tsx @@ -1,27 +1,17 @@ import Head from 'next/head' import { NextStudio } from 'next-sanity/studio' -import { NextStudioHead } from 'next-sanity/studio/head' -import { StudioLayout, StudioProvider } from 'sanity' +import { metadata } from 'next-sanity/studio/metadata' import config from 'sanity.config' -import { createGlobalStyle } from 'styled-components' - -const GlobalStyle = createGlobalStyle(({ theme }) => ({ - html: { backgroundColor: theme.sanity.color.base.bg }, -})) export default function StudioPage() { return ( <> - + {Object.entries(metadata).map(([key, value]) => ( + + ))} - - - - - - - + ) }