File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change
1
+ const Header = ( ) => {
2
+ return (
3
+ < header >
4
+ < h1 className = "font-bold text-yellow-300" > 스노우 볼 속 내 마음</ h1 >
5
+ </ header >
6
+ ) ;
7
+ } ;
8
+
9
+ export default Header ;
Original file line number Diff line number Diff line change
1
+ import TestModal from '@/shared/components/modals/testModal' ;
2
+
3
+ const IntroButtonSection = ( ) => {
4
+ return < TestModal /> ;
5
+ } ;
6
+
7
+ export default IntroButtonSection ;
Original file line number Diff line number Diff line change 1
1
import SnowGlobeCanvas from '@/shared/components/canvas/SnowGlobeCanvas' ;
2
2
import UISection from '@/shared/components/ui/UISection' ;
3
- import Header from './ _components/header ' ;
4
- import TestModal from '@/shared/components/modals/testModal ' ;
3
+ import Header from '@/app/(landing)/ _components/Header ' ;
4
+ import IntroButtonSection from '@/app/(landing)/_components/IntroButtonSection ' ;
5
5
6
6
const Home = ( ) => {
7
7
return (
8
8
< >
9
9
< UISection >
10
10
< Header />
11
- < TestModal />
11
+ < IntroButtonSection />
12
12
</ UISection >
13
13
< SnowGlobeCanvas />
14
14
</ >
You can’t perform that action at this time.
0 commit comments