feat: add src/app/page.tsx
This commit is contained in:
parent
3d6683a40c
commit
4d949ca0ef
|
|
@ -0,0 +1,11 @@
|
|||
'use client'
|
||||
import PublicLayout from '@/components/public/PublicLayout'
|
||||
import HomePage from '@/components/public/HomePage'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<PublicLayout>
|
||||
<HomePage />
|
||||
</PublicLayout>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in New Issue