-
Notifications
You must be signed in to change notification settings - Fork 79
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
[홍서하] sprint 9 #696
The head ref may contain hidden characters: "Next.js-\uD64D\uC11C\uD558-sprint_9-2"
[홍서하] sprint 9 #696
Changes from all commits
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.Container{ | ||
height: 136px; | ||
border-bottom: 1px solid var(--gray-200); | ||
margin-bottom: 24px; | ||
.Content{ | ||
font-size: 20px; | ||
font-weight: 600; | ||
color: var(--gray-800); | ||
display: flex; | ||
justify-content: space-between; | ||
height: 72px; | ||
margin-bottom: 16px; | ||
} | ||
.InnerContainer{ | ||
display: flex; | ||
justify-content: space-between; | ||
.Group{ | ||
display: flex; | ||
gap: 8px; | ||
} | ||
.HeartGroup{ | ||
display: flex; | ||
gap: 8px; | ||
line-height: 100%; | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.BestContainer{ | ||
margin: 0 10px; | ||
.InnerContainer{ | ||
padding: 0 24px 16px; | ||
width: 384px; | ||
height: 169px; | ||
background-color: var(--gray-50); | ||
@media (max-width: 745px) { | ||
width: 384px; | ||
height: 167px; | ||
} | ||
.Content{ | ||
font-size: 20px; | ||
font-weight: 600; | ||
color: var(--gray-800); | ||
margin-top: 16px; | ||
display: flex; | ||
justify-content: space-between; | ||
height: 72px; | ||
} | ||
.InfoContent{ | ||
font-size: 14px; | ||
color: var(--gray-600); | ||
display: flex; | ||
justify-content: space-between; | ||
.Info{ | ||
display: flex; | ||
line-height: 100%; | ||
.nickname{ | ||
margin-right: 8px; | ||
} | ||
.likeCount{ | ||
margin-left: 4px; | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,43 @@ | ||
import React from "react"; | ||
import { format } from "date-fns"; | ||
import Image from "next/image"; | ||
import styles from "./BestPosts.module.css"; | ||
import {BestPostsProps} from "@/type/type"; | ||
|
||
import React from 'react'; | ||
import { format } from 'date-fns'; | ||
import Image from 'next/image'; | ||
import styles from './BestPosts.module.css'; | ||
import { BestPostsProps } from '@/type/type'; | ||
|
||
function BestPosts({ post }: BestPostsProps) { | ||
return ( | ||
<> | ||
<div key={post.id} className={styles.BestContainer}> | ||
<div className={styles.InnerContainer}> | ||
<Image src="/Img/badge.svg" width={102} height={30} alt="badge" /> | ||
<Image src="/Img/badge.svg" width={102} height={30} alt="" /> | ||
<div className={styles.Content}> | ||
<p className={styles.Text}>{post.content}</p> | ||
{post.image ? ( | ||
<Image | ||
src={post.image} | ||
width={72} | ||
height={72} | ||
alt="이미지" | ||
className={styles.PostImgs} | ||
/> | ||
) : ( | ||
<></> | ||
)} | ||
</div> | ||
<div className={styles.InfoContent}> | ||
<div className={styles.Info}> | ||
<p className={styles.nickname}>{post.writer.nickname}</p> | ||
<Image src="/Img/heart.svg" width={16} height={16} alt="heart" /> | ||
<p className={styles.likeCount}>{post.likeCount}</p> | ||
</div > | ||
<div> | ||
<p className={styles.createdAt}> | ||
{format(new Date(post.createdAt), "yyyy. MM. dd")} | ||
</p> | ||
{post.image && ( | ||
<Image | ||
src={post.image} | ||
width={72} | ||
height={72} | ||
alt="이미지" | ||
className={styles.Img} | ||
/> | ||
)} | ||
</div> | ||
<div className={styles.InfoContent}> | ||
<div className={styles.Info}> | ||
<p className={styles.nickname}>{post.writer.nickname}</p> | ||
<Image src="/Img/heart.svg" width={16} height={16} alt="heart" /> | ||
<p className={styles.likeCount}>{post.likeCount}</p> | ||
</div> | ||
<div> | ||
<p className={styles.createdAt}> | ||
{format(new Date(post.createdAt), 'yyyy. MM. dd')} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
</> | ||
); | ||
} | ||
|
||
export default BestPosts; | ||
export default BestPosts; |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,30 +1,37 @@ | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.header{ | ||||||||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
.container{ | ||||||||||||||||||||||||||||||||||
margin: 0 auto; | ||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||||||||
padding: 10px 200px; | ||||||||||||||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.container{ | ||||||||||||||||||||||||||||||||||
margin: 0 auto; | ||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||||||||
padding: 10px 200px; | ||||||||||||||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||||||||||||||
.leftbox{ | ||||||||||||||||||||||||||||||||||
margin-top: 10px; | ||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||
.logo{ | ||||||||||||||||||||||||||||||||||
padding: 10px; | ||||||||||||||||||||||||||||||||||
.logo{ | ||||||||||||||||||||||||||||||||||
padding: 10px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
.nav{ | ||||||||||||||||||||||||||||||||||
text-decoration: none; | ||||||||||||||||||||||||||||||||||
font-size: 18px; | ||||||||||||||||||||||||||||||||||
font-weight: 900; | ||||||||||||||||||||||||||||||||||
padding: 24px 23px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
.profile{ | ||||||||||||||||||||||||||||||||||
padding: 24px; | ||||||||||||||||||||||||||||||||||
Comment on lines
+18
to
+25
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. 프리티어를 사용해보시는거 어떨까요 ?
Suggested change
사소한 줄바꿈, 띄어쓰기 등 코드를 작성하시다보면 자연스럽게 불규칙해지는 경우가 많아요. 보편적으로 많이 사용되는 툴은
|
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@media (max-width: 768px) { | ||||||||||||||||||||||||||||||||||
.container{ | ||||||||||||||||||||||||||||||||||
padding: 10px 24px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
.nav{ | ||||||||||||||||||||||||||||||||||
text-decoration: none; | ||||||||||||||||||||||||||||||||||
font-size: 18px; | ||||||||||||||||||||||||||||||||||
font-weight: 900; | ||||||||||||||||||||||||||||||||||
padding: 24px 23px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
.profile{ | ||||||||||||||||||||||||||||||||||
padding: 24px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import axios from 'axios'; | ||
|
||
const baseURL = axios.create({ | ||
const instance = axios.create({ | ||
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. 굳굳 의미가 더욱 뚜렷해졌군요 !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. 혹시 추 후 인가 처리하실 때에 도움이 되실 것 같아서요 !아래는 instance.interceptors.request.use(
(config) => {
const accessToken = localStorage.getItem('accessToken')?.replace(/"/gi, '');
if (!accessToken) return config;
config.headers.Authorization = accessToken;
return config;
},
(error) => {
return Promise.reject(error);
}
);
instance.interceptors.response.use(
(response) => {
return response;
},
(error) => {
alert(`ERROR: ${error.response.data.message} `);
return Promise.reject(error);
}
); |
||
baseURL: 'https://panda-market-api.vercel.app', | ||
}); | ||
|
||
export default baseURL; | ||
export default instance; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
} | ||
images: { | ||
domains: ['sprint-fe-project.s3.ap-northeast-2.amazonaws.com'], | ||
}, | ||
}; | ||
|
||
export default nextConfig; | ||
export default nextConfig; |
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.
굳굳 ~! 😊
장식용 이미지를 잘 스킵하셨군요 👍