2024-08-05 17:58:22 +09:00

15 lines
249 B
JavaScript

'use client'
import Hero from '@/components/Hero'
import Intro from '@/components/Intro'
export default function IntroPage() {
return (
<>
<div className="container mx-auto p-4 m-4 border">
<Intro />
</div>
</>
)
}