Skip to content
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

, #13

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open

, #13

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f4d79eb
원복을 위한 소스 복구
ssssbssss Oct 15, 2023
1f6e376
원복을 위한 복구
ssssbssss Oct 16, 2023
42c5b06
1017 21:41
ssssbssss Oct 17, 2023
6dc2269
배경화면 바꾸기 전 버전
ssssbssss Oct 20, 2023
0a60511
배경화면 변경
ssssbssss Oct 20, 2023
c88cb3d
explore card 사진 변경
ssssbssss Oct 20, 2023
51c2c6c
explore 카드 사진 변경
ssssbssss Oct 20, 2023
d4f8de5
원복 완료
ssssbssss Oct 20, 2023
bb22118
원복 완료 2
ssssbssss Oct 20, 2023
7cf9a81
대충 다만듦
ssssbssss Oct 20, 2023
07c39d5
대략 다만듦2
ssssbssss Oct 20, 2023
6e42cf6
동적 검색창 구현
ssssbssss Oct 30, 2023
ebc26dc
검색창 흰색으로 변경
ssssbssss Oct 30, 2023
9397e34
검색창 추천어 구현
ssssbssss Oct 30, 2023
61da4fa
연관검색어 api 연동
ssssbssss Nov 4, 2023
07045aa
wholeArrayText 삭제
ssssbssss Nov 4, 2023
88262d2
search 이동 구현
ssssbssss Nov 5, 2023
7132258
router 사용하여 파라미터 전달
ssssbssss Nov 6, 2023
03a691d
화면 중간저장용
ssssbssss Nov 6, 2023
d40558c
search 화면 중간 저장용
ssssbssss Nov 6, 2023
c9f2ab3
참고용 json 추가
ssssbssss Nov 6, 2023
663496e
추천 이유 구현 중간저장
ssssbssss Nov 7, 2023
b4c969a
의수 제공용
ssssbssss Nov 7, 2023
99d7765
테마별로 나오게함 (뉴스X)
ssssbssss Nov 7, 2023
89f5129
뉴스카드 주석처리 && 주제 나오게 map 처리
ssssbssss Nov 7, 2023
8845d99
테마별로 기사나오도록 수정
ssssbssss Nov 7, 2023
dd52cd9
레이아웃은 안 맞지만 일단 커밋하는 건에 대하여 ,,,
ssssbssss Nov 7, 2023
399c340
오늘의 최종본
ssssbssss Nov 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/head.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const Head = () => (
<>
<title>Metaversus</title>
<title>금요주식회</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</>
);

export default Head;
export default Head;
12 changes: 3 additions & 9 deletions app/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Footer, Navbar } from '../components';
import { About, Explore, Feedback, GetStarted, Hero, Insights, WhatsNew, World } from '../sections';
import { About, Explore, GetStarted, Hero, WhatsNew } from '../sections';

const Page = () => (
<div className="bg-primary-black overflow-hidden">
<div className="bg-white overflow-hidden">
<Navbar />
<Hero />
<div className="relative">
Expand All @@ -15,14 +15,8 @@ const Page = () => (
<div className="gradient-04 z-0" />
<WhatsNew />
</div>
<World />
<div className="relative">
<Insights />
<div className="gradient-04 z-0" />
<Feedback />
</div>
<Footer />
</div>
);

export default Page;
export default Page;
6 changes: 3 additions & 3 deletions components/CustomTexts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { textContainer, textVariant2 } from '../utils/motion';
export const TypingText = ({ title, textStyles }) => (
<motion.p
variants={textContainer}
className={`font-normal text-[14px] text-secondary-white ${textStyles}`}
className={`font-normal text-[14px] text-black ${textStyles}`}
>
{Array.from(title).map((letter, index) => (
<motion.span variants={textVariant2} key={index}>
Expand All @@ -21,8 +21,8 @@ export const TitleText = ({ title, textStyles }) => (
variants={textVariant2}
initial="hidden"
whileInView="show"
className={`mt-[8px] font-bold md:text-[64px] text-[40px] text-white ${textStyles}`}
className={`mt-[8px] font-bold md:text-[64px] text-[40px] text-black ${textStyles}`}
>
{title}
</motion.h2>
);
);
6 changes: 3 additions & 3 deletions components/ExploreCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ const ExploreCard = ({ id, imgUrl, title, index, active, handleClick }) => (
className={`${styles.flexCenter} w-[60px] h-[60px] rounded-[24px] glassmorphism mb-[16px]`}
>
<img
src="/headset.svg"
alt="headset"
src="/stocks.png"
alt="stock"
className="w-1/2 h-1/2 object-contain"
/>
</div>
<p className="font-normal text-[16px] leading-[20.16px] text-white uppercase">
Enter Metaverse
추천 종목
</p>
<h2 className="mt-[24px] font-semibold sm:text-[32px] text-[24px] text-white">
{title}
Expand Down
22 changes: 11 additions & 11 deletions components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ const Footer = () => (
<div className="footer-gradient" />
<div className={`${styles.innerWidth} mx-auto flex flex-col gap-8`}>
<div className="flex items-center justify-between flex-wrap gap-5">
<h4 className="font-bold md:text-[64px] text-[44px] text-white">
Enter the Metaverse
<h4 className="font-bold md:text-[50px] text-[44px] text-black">
주식을 누구에게나 쉽게
</h4>
<button type="button" className="flex items-center h-fit py-4 px-6 bg-[#25618B] rounded-[32px] gap-[12px]">
<button type="button" className="flex items-center h-fit py-4 px-6 bg-[#323F5D] rounded-[32px] gap-[12px]">
<img
src="/headset.svg"
alt="headset"
src="/puzzle.png"
alt="puzzle"
className="w-[24px] h-[24px] object-contain"
/>
<span className="font-normal text-[16px] text-white">
Enter Metaverse
맞춤정보 얻기
</span>
</button>
</div>
Expand All @@ -35,11 +35,11 @@ const Footer = () => (
<div className="mb-[50px] h-[2px] bg-white opacity-10" />

<div className="flex items-center justify-between flex-wrap gap-4">
<h4 className="font-extrabold text-[24px] text-white">
METAVERUS
<h4 className="font-normal text-[18px] text-black">
금요주식회
</h4>
<p className="font-normal text-[14px] text-white opacity-50">
Copyright © 2021 - 2022 Metaversus. All rights reserved.
<p className="font-normal text-[14px] text-black opacity-50">
Copyright © 2023 금요주식회 . All rights reserved.
</p>

<div className="flex gap-4">
Expand All @@ -58,4 +58,4 @@ const Footer = () => (
</motion.footer>
);

export default Footer;
export default Footer;
40 changes: 0 additions & 40 deletions components/InsightCard.jsx

This file was deleted.

Loading