-
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.
Merge pull request #125 from Bear29ers/feature/#121_create_a_gallery_…
…page Feature/#121 Create a gallery page(Galleryページの作成)
- Loading branch information
Showing
6 changed files
with
72 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import AnimatedText from '@/components/common/AnimatedText/AnimatedText'; | ||
import Footer from '@/components/layout/Footer/Footer'; | ||
|
||
import type { NextPage } from 'next'; | ||
|
||
const Gallery: NextPage = () => { | ||
return ( | ||
<div className="flex w-full flex-col items-center px-2.5 text-white xs:px-5 lg:px-0"> | ||
<div className="my-24"> | ||
<AnimatedText text="Gallery" classes="text-[48px] xs:text-[60px] xsm:text-[80px]" /> | ||
</div> | ||
{/* Footer */} | ||
<Footer /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Gallery; |
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
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