feat: add src/app/galerie/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:22:58 +00:00
parent e03495fdeb
commit 5615ee09a7
1 changed files with 11 additions and 0 deletions

11
src/app/galerie/page.tsx Normal file
View File

@ -0,0 +1,11 @@
'use client'
import PublicLayout from '@/components/public/PublicLayout'
import GalleryPage from '@/components/public/GalleryPage'
export default function GaleriePage() {
return (
<PublicLayout>
<GalleryPage />
</PublicLayout>
)
}