-
Notifications
You must be signed in to change notification settings - Fork 0
SCRUM-116-랜딩페이지 퍼블리싱 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,60 @@ | ||
| import Image from "next/image"; | ||
|
|
||
| import Logo from "../assets/icons/Logo.svg"; | ||
|
|
||
| export default function Home() { | ||
| return <div>This is Home</div>; | ||
| return ( | ||
| <div className="bg-black text-white min-h-screen pt-6 pb-40"> | ||
| <div className="ml-20 mr-20"> | ||
|
Ahnnakyung marked this conversation as resolved.
Outdated
|
||
| <div className="flex flex-row"> | ||
| <div className="flex flex-row"> | ||
| <Image src={Logo} alt="Logo" width={40} height={40} className="mr-2" /> | ||
| <div className="font-semibold text-xl">Nebula</div> | ||
| </div> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| <div className="flex flex-row justify-end items-end ml-auto text-right"> | ||
| <div className="font-extralight text-lg ml-6 cursor-pointer">Login</div> | ||
| <div className="font-extralight text-lg ml-6 cursor-pointer">Start</div> | ||
| <div className="font-extralight text-lg ml-6 cursor-pointer">Start</div> | ||
| <div className="font-extralight text-lg ml-6 cursor-pointer">Start</div> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이 버튼들은 라우팅 혹은 클릭 이벤트를 발생 시킬 예정이기 때문에 |
||
| </div> | ||
| </div> | ||
| <div className="flex flex-row"> | ||
| <div className="mt-60 mb-72"> | ||
| <div className="font-bold text-9xl">Nebula</div> | ||
| <div className="font-bold text-7xl">Service</div> | ||
| <div className="w-[550px] mt-20 font-extralight"> | ||
| Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor | ||
| incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud | ||
| exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. | ||
| </div> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 아 tailwindcss에 있는 단위로 하면 오른쪽의 시작페이지
로그인을 할 수 있는 마이페이지 입니다
프로필
로그인을 할 수 있는 마이페이지 입니다
이 부분이 같이 밀려서? 지정해주었습니다..! |
||
| </div> | ||
| <div className="ml-auto mt-80 text-right"> | ||
| <div className="font-mediumn text-xl">시작페이지</div> | ||
| <div className="font-extralight text-md mb-6"> | ||
| 로그인을 할 수 있는 마이페이지 입니다 | ||
| </div> | ||
| <div className="font-mediumn text-xl">프로필</div> | ||
| <div className="font-extralight text-md">로그인을 할 수 있는 마이페이지 입니다</div> | ||
| </div> | ||
| </div> | ||
| <div className="w-full h-[532px] border border-zinc-600 rounded-md"> | ||
| <div className="flex flex-row justify-between ml-10 mt-12 mb-20"> | ||
| <div className="flex-grow"> | ||
| <div className="font-bold text-7xl">Nebula</div> | ||
| <div className="font-bold text-7xl">Service</div> | ||
| <div className="w-[400px] mt-10 font-extralight"> | ||
| Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor | ||
| incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud | ||
| exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. | ||
| </div> | ||
| <button className="w-[100px] h-[48px] bg-zinc-300 self-center mt-20 rounded-sm"> | ||
| Play | ||
| </button> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| </div> | ||
| <div className="ml-auto text-right w-[810px] h-[432px] bg-zinc-800 mr-10"></div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
파일을 불러오는 경우 파스칼 케이스 보다는 카멜 케이스로 작성 부탁드려요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
원래 파일명이 소문자로 되어있던데 ../Assests/Icons/Logo이런식으로 해야되는건가요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import logo from "../assets/icons/logo.svg";이렇게 입니다