feat: add src/app/galerie/page.tsx
This commit is contained in:
parent
e03495fdeb
commit
5615ee09a7
|
|
@ -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>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in New Issue