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

기사 추천란 구현 #32

Merged
merged 1 commit into from
Jul 14, 2024
Merged

기사 추천란 구현 #32

merged 1 commit into from
Jul 14, 2024

Conversation

yeonddori
Copy link
Contributor

관련 이슈

작업 요약

  • 뉴스레터 페이지의 우측 부분 기사 추천란을 구현했습니다.

리뷰 요구 사항

import { Box } from '@mui/material';

import Header from '@/components/Header';
import Suggestions from '@/components/Suggestion';

const Page = () => {
  return (
    <Box>
      <Header />
      <Box p={16} width="300px">
        <Suggestions
          content={[
            { id: 1, title: '“빵순이들도 입맛 까다로워졌네”… ' },
            { id: 2, title: '“빵순이들도 입맛 까다로워졌네… 길어졌을 때 어떻게 될지”' },
            { id: 3, title: '“매우짧은글”' },
          ]}
          title="지민님에게 추천드려요!"
        />
      </Box>
    </Box>
  );
};

export default Page;

미리 보기

image

@yeonddori yeonddori requested a review from stopmin July 14, 2024 08:07
@yeonddori yeonddori self-assigned this Jul 14, 2024
Copy link

vercel bot commented Jul 14, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
gyeongdan-frontend ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 14, 2024 8:08am

Copy link
Contributor

@stopmin stopmin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

왤캐 빠름?
giphycat

@yeonddori yeonddori merged commit 40a2b79 into main Jul 14, 2024
3 checks passed
@yeonddori yeonddori deleted the feature/ISSUE-31 branch July 14, 2024 08:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

기사 추천란 구현
2 participants