feat: add src/app/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:22:54 +00:00
parent 3d6683a40c
commit 4d949ca0ef
1 changed files with 11 additions and 0 deletions

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

@ -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>
)
}