Skip to content

Commit ebb32da

Browse files
committed
feat: add IntroButtonSection
1 parent 998f524 commit ebb32da

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

app/(landing)/_components/Header.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import TestModal from '@/shared/components/modals/testModal';
2+
3+
const IntroButtonSection = () => {
4+
return <TestModal />;
5+
};
6+
7+
export default IntroButtonSection;

app/(landing)/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import SnowGlobeCanvas from '@/shared/components/canvas/SnowGlobeCanvas';
22
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';
55

66
const Home = () => {
77
return (
88
<>
99
<UISection>
1010
<Header />
11-
<TestModal />
11+
<IntroButtonSection />
1212
</UISection>
1313
<SnowGlobeCanvas />
1414
</>

0 commit comments

Comments
 (0)