Added base content styling & definition list
This commit is contained in:
3
src/app/keystatic/[[...params]]/page.tsx
Normal file
3
src/app/keystatic/[[...params]]/page.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Page() {
|
||||
return null
|
||||
}
|
||||
6
src/app/keystatic/keystatic.ts
Normal file
6
src/app/keystatic/keystatic.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
'use client'
|
||||
|
||||
import { makePage } from '@keystatic/next/ui/app'
|
||||
import config from '../../../keystatic.config'
|
||||
|
||||
export default makePage(config)
|
||||
18
src/app/keystatic/layout.tsx
Normal file
18
src/app/keystatic/layout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import KeystaticApp from './keystatic'
|
||||
|
||||
export default function KeystaticLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Keystatic Admin</title>
|
||||
</head>
|
||||
<body>
|
||||
<KeystaticApp />
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user