17 lines
496 B
TypeScript
17 lines
496 B
TypeScript
export const dynamic = 'force-dynamic'
|
|
import { UeberUnsVerwaltung } from '@/components/admin/UeberUnsVerwaltung'
|
|
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = { title: 'Über uns' }
|
|
|
|
export default function AdminUeberUnsPage() {
|
|
return (
|
|
<div className="max-w-4xl mx-auto px-4 py-8">
|
|
<h1 className="text-2xl font-bold tracking-tight mb-6" style={{ color: 'var(--text-primary)' }}>
|
|
Über uns
|
|
</h1>
|
|
<UeberUnsVerwaltung />
|
|
</div>
|
|
)
|
|
}
|