Files
editor/apps/community/app/viewer/[id]/layout.tsx
T
2026-03-11 12:16:26 +01:00

15 lines
294 B
TypeScript

import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Project Viewer',
description: 'View and share 3D projects built with Pascal Editor.',
}
export default function ViewerLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return children
}