Skip to content

Commit

Permalink
Merge pull request #38 from SWF2023-HongikIngan/feature/list
Browse files Browse the repository at this point in the history
feat(list): mock png 추가
  • Loading branch information
Me1e committed Aug 1, 2023
2 parents 8aa959d + f28d104 commit 383fbed
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/nextjs/pages/list.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import Image from "next/image";
import styled from "@emotion/styled";

export default function ListPage() {
return (
<ListWrapper>
<Image src="/community.png" alt="list" width={375} height={1289} />
</ListWrapper>
);
}

const ListWrapper = styled.div`
padding: 64px 0 0;
display: flex;
align-items: center;
justify-content: center;
`;
Binary file added packages/nextjs/public/community.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 383fbed

Please sign in to comment.