Skip to content

Commit 52e82c3

Browse files
authored
Feat/write#19 (#142)
* [feat] 글쓰기 기능 * [feat] 포스트 작성 기능 * Feat/communityscroll#23 (#114) * [feat] 스크롤링구현 * [feat] 주소, api설정 * [feat] 커뮤니티 탭, 필터 패치로직 * [feat] lastLikeCount, lastCommentCount, 추가 * [fix] 코멘트 삭제수정 마이페이지에선 뗄수있게 myPage props 추가 * 옵셔널로 수정 * 오류 수정 * [feat] 글쓰기 기능 * 카테고리필수 * [feat] 포스트 무한스크롤 + 글쓰기기능 이미지추가 * [feat] 이미지 스와이퍼 * [feat] 프로필 쑤리 이미지 * [feat] 댓글 누르면 댓글 섹션으로 가기 * [feat] 좋아요기능(아직 좋아요받아오는건 못함 api필요) * [feat] 게시물 수정 * [feat] 글 수정 * [refactor] 코드 조금정리 * [feat] 작성자본인만 글수정삭제 * [feat]글 삭제기능 * [feat] 칵테일태그 * [fix]칵테일, 쉐어 기능 * 수 라우터, 비로그인처리 * 타입 수정 * 타입 수정 * 타입수정 * 타입수정 * 타입수정 * 오류수정 * 오류수정 * 오류수정 * 오류수정 * 오류수정 * 충돌해결 * 오류 수정 * 오류 수정 * 오류 수정 * [fix] 이미지 카운트, 10개 제한 * [fix] 글쓰기 placeholder * [fix] 공유 url 수정 * [fix] 프로필배경 지우기 * [fix] 플로팅탭 미디어쿼리 수정 * [fix] 수정 모달 * 댓글실시간반영 시도 * 수정 * [fix] 수정모달 로직 수정 * 수정로직 수정 * [feat] edit수정 * 타입오류 * [feat] 좋아요로직 수정 * [fix] 칵테일태그 너비 수정 * 글쓰기 로그인검사 * 버그들 수정 * 반응형 * 파일명 대문자수정
1 parent 9c64186 commit 52e82c3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+454
-418
lines changed

next.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import type { NextConfig } from 'next';
22

33
const nextConfig: NextConfig = {
4+
experimental: {
5+
scrollRestoration: false,
6+
},
47
images: {
58
domains: ['team2-app-s3-bucket.s3.ap-northeast-2.amazonaws.com'],
69
remotePatterns: [
@@ -9,6 +12,7 @@ const nextConfig: NextConfig = {
912
hostname: 'www.thecocktaildb.com',
1013
},
1114
],
15+
qualities: [25, 50, 75, 90, 100],
1216
},
1317
env: {
1418
NPUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,

public/1Stars.png

-28.5 KB
Binary file not shown.

public/1Stars.webp

-13.5 KB
Binary file not shown.

public/1star.webp

1.26 KB
Loading

public/2Stars.png

-30.8 KB
Binary file not shown.

public/2Stars.webp

-14.5 KB
Binary file not shown.

public/2star.webp

1.94 KB
Loading

public/CocktailDrop.webp

38.2 KB
Loading

public/CocktailDrop_4x.webp

-666 KB
Binary file not shown.

src/app/(no-layout)/layout.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1+
import FooterWrapper from '@/shared/components/footer/FooterWrapper';
2+
import Header from '@/shared/components/header/Header';
3+
14
function NoLayout({ children }: { children: React.ReactNode }) {
2-
return <main className="flex flex-1">{children}</main>;
5+
return (
6+
<>
7+
<Header className="bg-transparent w-full h-[44px] md:h-[60px] flex items-center justify-between px-[12px] fixed top-0 left-0 z-50 transition-transform duration-200 ease-in-ou" />
8+
<main className="flex flex-1">{children}</main>
9+
<FooterWrapper />
10+
</>
11+
);
312
}
413
export default NoLayout;

0 commit comments

Comments
 (0)