-
Notifications
You must be signed in to change notification settings - Fork 1
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
12 changed files
with
72 additions
and
34 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -22,14 +22,12 @@ export default function RootLayout({ | |
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.css" | ||
rel="stylesheet" | ||
/> | ||
<link href="https://webfontworld.github.io/vitro/VitroCore.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<div className="bg-white"> | ||
<Provider> | ||
<MSWComponent> | ||
<NavigationBar /> | ||
{children} | ||
</MSWComponent> | ||
<MSWComponent>{children}</MSWComponent> | ||
</Provider> | ||
</div> | ||
<Toaster /> | ||
|
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,14 +1,51 @@ | ||
import Image from 'next/image'; | ||
import mainBookBackground from '../public/assets/main-book-background.png'; | ||
import mainMyongjiLogo from '../public/assets/main-myongji-logo.png'; | ||
import graduationCap from '../public/assets/graduation-cap.png'; | ||
import Responsive from './ui/responsive'; | ||
import NavigationBar from './ui/view/molecule/navigation-bar'; | ||
import Button from './ui/view/atom/button/button'; | ||
import Link from 'next/link'; | ||
|
||
export default function Home() { | ||
export default function HomePage() { | ||
return ( | ||
<main className="flex min-h-screen flex-col items-center justify-between p-24"> | ||
<Link | ||
href="/dashboard" | ||
className="flex items-center gap-5 self-start rounded-lg bg-blue-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-blue-400 md:text-base" | ||
> | ||
<span>dashboard</span> | ||
</Link> | ||
</main> | ||
<div className="bg-primary w-[100vw] h-[100vh] overflow-hidden relative"> | ||
<NavigationBar /> | ||
<Responsive minWidth={768}> | ||
<Image src={mainBookBackground} alt="main-book-background" className="fixed right-0 w-[60%] z-0" /> | ||
</Responsive> | ||
<Image | ||
src={mainMyongjiLogo} | ||
alt="main-myongji-logo" | ||
width={120} | ||
height={120} | ||
className="absolute top-24 right-4" | ||
/> | ||
<div className="relative h-full flex flex-col items-center justify-center gap-6 z-1"> | ||
<p className="text-center flex flex-col gap-4"> | ||
<div className="relative"> | ||
<div className="z-2 text-3xl font-bold sm:text-7xl relative text-white" style={{ fontFamily: 'VitroCore' }}> | ||
<span className="text-etc-yellow" style={{ fontFamily: 'VitroCore' }}> | ||
졸 | ||
</span> | ||
업을 | ||
<span className="text-etc-yellow" style={{ fontFamily: 'VitroCore' }}> | ||
부 | ||
</span> | ||
탁해 | ||
</div> | ||
<Image | ||
src={graduationCap} | ||
alt="graduation-cap" | ||
className="absolute bottom-2 left-8 sm:bottom-10 sm:left-[-24px] sm:w-[52px] sm:h-[52px] w-[36px] h-[36px]" | ||
/> | ||
</div> | ||
<div className="text-md sm:text-lg text-gray-400 font-medium">명지인을 위한 간편 졸업요건 검사 사이트</div> | ||
</p> | ||
<Link href="/grade-upload"> | ||
<Button label="검사 시작" variant="dark" size="xl" /> | ||
</Link> | ||
</div> | ||
</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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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