From d6d5dfd9f038a92fecf016d4cf0e1ee5c119f764 Mon Sep 17 00:00:00 2001 From: chan Date: Sun, 1 Feb 2026 17:23:10 +0900 Subject: [PATCH 1/2] =?UTF-8?q?style:=ED=95=B4=EC=83=81=EB=8F=84=EB=B3=84?= =?UTF-8?q?=20=EB=B0=98=EC=9D=91=ED=98=95=20=EC=B2=98=EB=A6=AC=20/=20globa?= =?UTF-8?q?lRedner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/ui/animation/pageTransition.tsx | 4 ++-- src/shared/ui/globalRender/globalRender.tsx | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/shared/ui/animation/pageTransition.tsx b/src/shared/ui/animation/pageTransition.tsx index aa7f270..232dfa2 100644 --- a/src/shared/ui/animation/pageTransition.tsx +++ b/src/shared/ui/animation/pageTransition.tsx @@ -33,8 +33,8 @@ export const PageTransition = ({ children }: { children: ReactNode }) => { }, [pathname, address, isEmbed]); return ( -
-
+
+
{ return (
- {/* 최대 폭 컨테이너 */}
- {/* LEFT TEXT */}
@@ -59,8 +57,8 @@ export const HomeLandingRender = ({ children, bottom }: Props) => {
-
-
+
+
Date: Mon, 2 Feb 2026 22:22:08 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20=EB=B0=B0=ED=8F=AC=20=EA=B4=80?= =?UTF-8?q?=EB=A0=A8=20docker=20=ED=8C=8C=EC=9D=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Docker-pinhouse-file | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Docker-pinhouse-file diff --git a/Docker-pinhouse-file b/Docker-pinhouse-file new file mode 100644 index 0000000..8d2a73d --- /dev/null +++ b/Docker-pinhouse-file @@ -0,0 +1,41 @@ +# ========================= +# 1️⃣ Base +# ========================= +FROM node:20-alpine AS base +WORKDIR /pinhouse-fe + +# ========================= +# 2️⃣ Dependencies +# ========================= +FROM base AS deps +COPY package.json package-lock.json ./ +RUN npm ci + +# ========================= +# 3️⃣ Build +# ========================= +FROM base AS builder +COPY --from=deps /pinhouse-fe/node_modules ./node_modules +COPY . . + +# build-args로 전달받은 환경 변수 설정 (빌드 타임에 필요) +ARG NEXT_PUBLIC_API_URL +ARG NEXT_PUBLIC_OAUTH2 +ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL +ENV NEXT_PUBLIC_OAUTH2=$NEXT_PUBLIC_OAUTH2 + +RUN npm run build + +# ========================= +# 4️⃣ Runner (local test) +# ========================= +FROM base AS runner +ENV NODE_ENV=production + +COPY --from=builder /pinhouse-fe/package.json ./package.json +COPY --from=builder /pinhouse-fe/node_modules ./node_modules +COPY --from=builder /pinhouse-fe/.next ./.next +COPY --from=builder /pinhouse-fe/public ./public + +EXPOSE 3000 +CMD ["npm", "start"]