Added base content styling & definition list

This commit is contained in:
2025-09-09 14:42:27 +02:00
parent a549960647
commit 485b57b847
52 changed files with 5338 additions and 1387 deletions

View File

@@ -0,0 +1,3 @@
export default function Page() {
return null
}

View File

@@ -0,0 +1,6 @@
'use client'
import { makePage } from '@keystatic/next/ui/app'
import config from '../../../keystatic.config'
export default makePage(config)

View 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>
)
}