fix: 파일 정리

This commit is contained in:
yoosangwook 2024-08-05 10:27:41 +09:00
parent db040acf5a
commit 79df68e395
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import Hero from '@/components/Hero'
import Main from '@/components/Main'
export default function Home() {
return <Hero title="Q.CAST III - Prototype" />
return <Main />
}

5
src/components/Main.jsx Normal file
View File

@ -0,0 +1,5 @@
import Hero from './Hero'
export default function Main() {
return <Hero title="Q.CAST III - Prototype" />
}