-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
39 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
'use client'; | ||
import Header from '@/components/header/Header'; | ||
import CoreValue from '@/components/mainpage/CoreValue'; | ||
|
||
import MakersLogo3D from '@/components/common/MakersLogo3D'; | ||
import Greeting from '@/components/mainpage/Greeting'; | ||
import MakersIntodution from '@/components/mainpage/MakersIntodution'; | ||
import Missions from '@/components/mainpage/Missions'; | ||
import Product from '@/components/mainpage/Product'; | ||
import Recruit from '@/components/mainpage/Recruit'; | ||
|
||
export default function Page() { | ||
return ( | ||
<div> | ||
<Header /> | ||
<Greeting /> | ||
<div className='bg-makers-logo bg-center bg-no-repeat'> | ||
{/* <Header /> */} | ||
<div className='relative h-[300vh]'> | ||
<div className='absolute inset-0'> | ||
<div className='sticky top-0 h-[100vh] pt-[5rem] flex justify-center items-center'> | ||
<MakersLogo3D className='h-[20rem] w-[20rem]' /> | ||
</div> | ||
</div> | ||
<div className='absolute inset-0'> | ||
<Greeting className='' /> | ||
</div> | ||
</div> | ||
{/* <div className='bg-makers-logo bg-center bg-no-repeat'> | ||
<MakersIntodution /> | ||
</div> | ||
<div className='bg-makers-logo bg-center bg-no-repeat'> | ||
<Missions /> | ||
</div> | ||
<Product /> | ||
<CoreValue /> | ||
<Recruit /> | ||
<Recruit /> */} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters