Skip to content

Commit

Permalink
Add pages for Matik and Malynar
Browse files Browse the repository at this point in the history
  • Loading branch information
Matushl committed Nov 11, 2023
1 parent a23fb71 commit be3f592
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/pages/malynar/profil/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import {NextPage} from 'next'

import {PageLayout} from '@/components/PageLayout/PageLayout'
import {ProfileDetail} from '@/components/Profile/ProfileDetail'

const Profil: NextPage = () => (
<PageLayout contentWidth={2} title="Profil">
<ProfileDetail />
</PageLayout>
)

export default Profil
12 changes: 12 additions & 0 deletions src/pages/matik/profil/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import {NextPage} from 'next'

import {PageLayout} from '@/components/PageLayout/PageLayout'
import {ProfileDetail} from '@/components/Profile/ProfileDetail'

const Profil: NextPage = () => (
<PageLayout contentWidth={2} title="Profil">
<ProfileDetail />
</PageLayout>
)

export default Profil

0 comments on commit be3f592

Please sign in to comment.