feat: 라이트 + 네이버그린(#03C75A) 디자인 복원 (1ae4bad)
Deploy Startover / deploy (push) Failing after 0s
Deploy Startover / deploy (push) Failing after 0s
- 다크 리뉴얼(eb28c6a) 잘못 revert로 warm beige로 돌아갔던 상태에서 사용자가 원하는 1ae4bad의 라이트 테마(흰 배경 + 네이버그린)로 복원 - 매장 등록·표시 만원 단위(b1a07e7) 유지: stores 리스트 "만원/억원", 상세 formatKRW를 억/만원 분해 표시로 업그레이드 - AdSense 관련 그대로 유지
This commit is contained in:
@@ -29,13 +29,17 @@ export function AuthButtons({ session }: AuthButtonsProps) {
|
||||
<div className="flex items-center gap-2">
|
||||
<Link
|
||||
href="/auth/login"
|
||||
className="text-sm text-ink-light hover:text-warm-600 transition-colors"
|
||||
className="text-sm font-medium text-ink-light transition-colors hover:text-ink"
|
||||
>
|
||||
로그인
|
||||
</Link>
|
||||
<Link
|
||||
href="/auth/register"
|
||||
className="rounded-full bg-ink px-4 py-1.5 text-sm text-warm-50 hover:bg-warm-800 transition-colors"
|
||||
className="rounded-full px-4 py-1.5 text-sm font-semibold text-white transition-transform hover:-translate-y-0.5"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg,#03C75A 0%,#02A149 55%,#018f40 100%)',
|
||||
boxShadow: '0 8px 20px -6px rgba(3, 199, 90, 0.5)',
|
||||
}}
|
||||
>
|
||||
회원가입
|
||||
</Link>
|
||||
@@ -47,13 +51,14 @@ export function AuthButtons({ session }: AuthButtonsProps) {
|
||||
<div className="flex items-center gap-3">
|
||||
<span className="text-sm text-ink-light">
|
||||
{session.user.name}
|
||||
<span className="ml-1 text-xs text-ink-muted">
|
||||
<span className="ml-1.5 font-mono text-[10px] text-ink-muted">
|
||||
({ROLE_LABELS[session.user.primaryRole] || session.user.primaryRole})
|
||||
</span>
|
||||
</span>
|
||||
<button
|
||||
onClick={() => signOut({ callbackUrl: '/' })}
|
||||
className="rounded-full px-3 py-1.5 text-sm text-ink-light hover:bg-warm-100 transition-colors"
|
||||
className="rounded-full border border-line px-3 py-1.5 text-sm text-ink-light transition-colors hover:border-naver hover:text-naver"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
로그아웃
|
||||
</button>
|
||||
|
||||
+627
-60
@@ -1,76 +1,242 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;700&display=swap');
|
||||
@import "tailwindcss";
|
||||
|
||||
@theme {
|
||||
--font-display: 'Playfair Display', Georgia, serif;
|
||||
--font-body: 'Noto Sans KR', sans-serif;
|
||||
--color-warm-50: #fefcf9;
|
||||
--color-warm-100: #fdf6ec;
|
||||
--color-warm-200: #f9e8cf;
|
||||
--color-warm-300: #f2d1a5;
|
||||
--color-warm-400: #e8b06e;
|
||||
--color-warm-500: #d4874a;
|
||||
--color-warm-600: #b8622e;
|
||||
--color-warm-700: #8e4a22;
|
||||
--color-warm-800: #6b3a1e;
|
||||
--color-warm-900: #3d2213;
|
||||
--color-ink: #1a1410;
|
||||
--color-ink-light: #4a4035;
|
||||
--color-ink-muted: #8a7e72;
|
||||
--color-sage-500: #6b8f71;
|
||||
--color-sage-600: #527a58;
|
||||
/* Typography */
|
||||
--font-body: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
|
||||
--font-display: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--font-serif: 'Instrument Serif', Georgia, serif;
|
||||
--font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
|
||||
|
||||
/* Naver Green signature system */
|
||||
--color-naver: #03C75A;
|
||||
--color-naver-dark: #02A149;
|
||||
--color-naver-deep: #018f40;
|
||||
--color-naver-light: #2BD673;
|
||||
--color-naver-soft: #E4F9EC;
|
||||
--color-naver-tint: #F2FBF6;
|
||||
|
||||
/* Gradient complements */
|
||||
--color-mint: #00C4A7;
|
||||
--color-lime-accent: #84E1A1;
|
||||
--color-emerald: #0AB070;
|
||||
|
||||
/* Neutral (white-first) palette */
|
||||
--color-ink: #0F1D17; /* near-black text */
|
||||
--color-ink-light: #3E4A44; /* secondary text */
|
||||
--color-ink-muted: #7B8581; /* muted text */
|
||||
--color-line: #E4E8E6; /* subtle border */
|
||||
--color-line-soft: #EFF2F0; /* softer border */
|
||||
--color-surface: #FFFFFF;
|
||||
--color-surface-soft: #F7FAF8;
|
||||
--color-surface-mute: #F0F5F2;
|
||||
|
||||
/* Legacy warm palette remap → light neutrals so old pages stay readable */
|
||||
--color-warm-50: #ffffff;
|
||||
--color-warm-100: #F7FAF8;
|
||||
--color-warm-200: #EFF2F0;
|
||||
--color-warm-300: #E4E8E6;
|
||||
--color-warm-400: #84E1A1;
|
||||
--color-warm-500: #03C75A;
|
||||
--color-warm-600: #02A149;
|
||||
--color-warm-700: #018f40;
|
||||
--color-warm-800: #0F1D17;
|
||||
--color-warm-900: #0A1410;
|
||||
|
||||
--color-sage-500: #03C75A;
|
||||
--color-sage-600: #02A149;
|
||||
|
||||
/* Legacy dark night palette kept as neutrals (in case referenced) */
|
||||
--color-night-0: #ffffff;
|
||||
--color-night-1: #F7FAF8;
|
||||
--color-night-2: #EFF2F0;
|
||||
--color-night-3: #E4E8E6;
|
||||
--color-night-4: #D3D9D6;
|
||||
--color-night-5: #B6BEB9;
|
||||
--color-cloud-0: #0F1D17;
|
||||
--color-cloud-1: rgba(15, 29, 23, 0.92);
|
||||
--color-cloud-2: rgba(15, 29, 23, 0.68);
|
||||
--color-cloud-3: rgba(15, 29, 23, 0.48);
|
||||
--color-cloud-4: rgba(15, 29, 23, 0.32);
|
||||
|
||||
/* Accent palette remapped toward green family */
|
||||
--color-iris: #03C75A;
|
||||
--color-iris-light: #2BD673;
|
||||
--color-violet: #00C4A7;
|
||||
--color-violet-light: #4FD9C3;
|
||||
--color-rose: #0AB070;
|
||||
--color-rose-light: #34D399;
|
||||
--color-tangerine: #84E1A1;
|
||||
--color-tangerine-light: #A5EBB8;
|
||||
--color-azure: #34D399;
|
||||
--color-lime: #03C75A;
|
||||
--color-lime-light: #2BD673;
|
||||
--color-amber: #02A149;
|
||||
}
|
||||
|
||||
/* Staggered fade-in-up animation */
|
||||
/* -----------------------------------------------------------------
|
||||
* Global body defaults — LIGHT theme
|
||||
* ----------------------------------------------------------------- */
|
||||
html {
|
||||
background: #ffffff;
|
||||
}
|
||||
body {
|
||||
background: #ffffff;
|
||||
color: #0F1D17;
|
||||
font-feature-settings: "cv11", "ss01";
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-rendering: optimizeLegibility;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: rgba(3, 199, 90, 0.22);
|
||||
color: #0F1D17;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Keyframes
|
||||
* ----------------------------------------------------------------- */
|
||||
@keyframes fade-up {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(32px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
from { opacity: 0; transform: translateY(32px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes slide-in-right {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateX(24px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
from { opacity: 0; transform: translateX(24px); }
|
||||
to { opacity: 1; transform: translateX(0); }
|
||||
}
|
||||
|
||||
@keyframes mesh-float {
|
||||
0%, 100% { transform: translate(0, 0) scale(1); }
|
||||
33% { transform: translate(30px, -20px) scale(1.05); }
|
||||
66% { transform: translate(-20px, 15px) scale(0.95); }
|
||||
33% { transform: translate(40px, -30px) scale(1.08); }
|
||||
66% { transform: translate(-30px, 20px) scale(0.92); }
|
||||
}
|
||||
@keyframes shimmer {
|
||||
0% { background-position: 0% 50%; }
|
||||
100% { background-position: 200% 50%; }
|
||||
}
|
||||
@keyframes gradient-pan {
|
||||
0%, 100% { background-position: 0% 50%; }
|
||||
50% { background-position: 100% 50%; }
|
||||
}
|
||||
@keyframes pulse-glow {
|
||||
0%, 100% { opacity: 0.45; transform: scale(1); }
|
||||
50% { opacity: 0.85; transform: scale(1.06); }
|
||||
}
|
||||
@keyframes marquee {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-50%); }
|
||||
}
|
||||
@keyframes spin-slow {
|
||||
from { transform: rotate(0deg); }
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
@keyframes grid-drift {
|
||||
0% { background-position: 0 0; }
|
||||
100% { background-position: 48px 48px; }
|
||||
}
|
||||
|
||||
.animate-fade-up {
|
||||
animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
|
||||
opacity: 0;
|
||||
/* Reveal-on-load with stagger */
|
||||
.reveal { opacity: 0; transform: translateY(24px); animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
|
||||
.reveal.d1 { animation-delay: 0.08s; }
|
||||
.reveal.d2 { animation-delay: 0.18s; }
|
||||
.reveal.d3 { animation-delay: 0.28s; }
|
||||
.reveal.d4 { animation-delay: 0.4s; }
|
||||
.reveal.d5 { animation-delay: 0.55s; }
|
||||
.reveal.d6 { animation-delay: 0.7s; }
|
||||
.reveal.d7 { animation-delay: 0.85s; }
|
||||
|
||||
.animate-fade-up { animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; opacity: 0; }
|
||||
.animate-fade-in { animation: fade-in 0.7s ease forwards; opacity: 0; }
|
||||
.animate-slide-right { animation: slide-in-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; opacity: 0; }
|
||||
.animate-spin-slow { animation: spin-slow 30s linear infinite; }
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Gradient / text utilities — Naver green family
|
||||
* ----------------------------------------------------------------- */
|
||||
.text-grad-primary {
|
||||
background: linear-gradient(135deg, #03C75A 0%, #00C4A7 55%, #0AB070 100%);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
color: transparent;
|
||||
}
|
||||
.text-grad-subtle {
|
||||
background: linear-gradient(120deg, #2BD673 0%, #4FD9C3 50%, #84E1A1 100%);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
color: transparent;
|
||||
}
|
||||
.text-grad-rainbow {
|
||||
background: linear-gradient(120deg, #03C75A, #00C4A7, #2BD673, #0AB070, #84E1A1, #03C75A);
|
||||
background-size: 200% auto;
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
color: transparent;
|
||||
animation: shimmer 10s linear infinite;
|
||||
}
|
||||
.text-grad-iris,
|
||||
.text-grad-rose,
|
||||
.text-grad-tangerine {
|
||||
background: linear-gradient(135deg, #03C75A 0%, #00C4A7 60%, #0AB070 100%);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.animate-fade-in {
|
||||
animation: fade-in 0.6s ease forwards;
|
||||
opacity: 0;
|
||||
.bg-grad-primary {
|
||||
background: linear-gradient(135deg, #03C75A 0%, #00C4A7 55%, #0AB070 100%);
|
||||
}
|
||||
.bg-grad-soft {
|
||||
background: linear-gradient(135deg, #E4F9EC 0%, #F2FBF6 60%, #FFFFFF 100%);
|
||||
}
|
||||
|
||||
.animate-slide-right {
|
||||
animation: slide-in-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
|
||||
opacity: 0;
|
||||
/* -----------------------------------------------------------------
|
||||
* Backgrounds / patterns (light)
|
||||
* ----------------------------------------------------------------- */
|
||||
.bg-grid {
|
||||
background-image:
|
||||
linear-gradient(to right, rgba(15, 29, 23, 0.04) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, rgba(15, 29, 23, 0.04) 1px, transparent 1px);
|
||||
background-size: 48px 48px;
|
||||
}
|
||||
.bg-grid-animated {
|
||||
background-image:
|
||||
linear-gradient(to right, rgba(3, 199, 90, 0.07) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, rgba(3, 199, 90, 0.07) 1px, transparent 1px);
|
||||
background-size: 48px 48px;
|
||||
animation: grid-drift 20s linear infinite;
|
||||
}
|
||||
.bg-dot {
|
||||
background-image: radial-gradient(circle, rgba(3, 199, 90, 0.18) 1px, transparent 1px);
|
||||
background-size: 24px 24px;
|
||||
}
|
||||
.bg-radial-fade {
|
||||
background: radial-gradient(ellipse at center, transparent 0%, #ffffff 75%);
|
||||
}
|
||||
|
||||
/* Gradient mesh blobs */
|
||||
/* Glow orbs — green family */
|
||||
.orb {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
filter: blur(90px);
|
||||
opacity: 0.35;
|
||||
pointer-events: none;
|
||||
animation: mesh-float 18s ease-in-out infinite, pulse-glow 9s ease-in-out infinite;
|
||||
}
|
||||
.orb-iris { background: radial-gradient(circle, #03C75A 0%, transparent 70%); }
|
||||
.orb-violet { background: radial-gradient(circle, #00C4A7 0%, transparent 70%); }
|
||||
.orb-rose { background: radial-gradient(circle, #2BD673 0%, transparent 70%); }
|
||||
.orb-tangerine { background: radial-gradient(circle, #84E1A1 0%, transparent 70%); }
|
||||
.orb-azure { background: radial-gradient(circle, #4FD9C3 0%, transparent 70%); }
|
||||
.orb-lime { background: radial-gradient(circle, #03C75A 0%, transparent 70%); }
|
||||
|
||||
.mesh-blob {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
@@ -79,16 +245,111 @@
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Card hover lift */
|
||||
.card-lift {
|
||||
transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
|
||||
}
|
||||
.card-lift:hover {
|
||||
transform: translateY(-6px);
|
||||
box-shadow: 0 20px 60px -12px rgba(26, 20, 16, 0.15);
|
||||
/* -----------------------------------------------------------------
|
||||
* Card surfaces (light glass)
|
||||
* ----------------------------------------------------------------- */
|
||||
.glass-dark,
|
||||
.glass-darker {
|
||||
background: rgba(255, 255, 255, 0.82);
|
||||
backdrop-filter: blur(18px);
|
||||
-webkit-backdrop-filter: blur(18px);
|
||||
border: 1px solid rgba(15, 29, 23, 0.06);
|
||||
box-shadow: 0 6px 30px -18px rgba(15, 29, 23, 0.18);
|
||||
}
|
||||
|
||||
/* Link underline animation */
|
||||
.grad-border {
|
||||
position: relative;
|
||||
background: #ffffff;
|
||||
border-radius: 20px;
|
||||
transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
|
||||
box-shadow 0.4s ease;
|
||||
box-shadow: 0 4px 18px -10px rgba(15, 29, 23, 0.12);
|
||||
}
|
||||
.grad-border::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
padding: 1px;
|
||||
border-radius: inherit;
|
||||
background: linear-gradient(135deg,
|
||||
rgba(3, 199, 90, 0.55) 0%,
|
||||
rgba(0, 196, 167, 0.38) 50%,
|
||||
rgba(10, 176, 112, 0.30) 100%);
|
||||
-webkit-mask:
|
||||
linear-gradient(#000 0 0) content-box,
|
||||
linear-gradient(#000 0 0);
|
||||
mask:
|
||||
linear-gradient(#000 0 0) content-box,
|
||||
linear-gradient(#000 0 0);
|
||||
-webkit-mask-composite: xor;
|
||||
mask-composite: exclude;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.4s ease;
|
||||
}
|
||||
.grad-border:hover {
|
||||
transform: translateY(-6px);
|
||||
box-shadow: 0 16px 40px -18px rgba(3, 199, 90, 0.35);
|
||||
}
|
||||
.grad-border:hover::before {
|
||||
background: linear-gradient(135deg,
|
||||
rgba(3, 199, 90, 0.95) 0%,
|
||||
rgba(0, 196, 167, 0.75) 50%,
|
||||
rgba(10, 176, 112, 0.60) 100%);
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Buttons
|
||||
* ----------------------------------------------------------------- */
|
||||
.btn-grad {
|
||||
position: relative;
|
||||
background: linear-gradient(135deg, #03C75A 0%, #00C4A7 60%, #0AB070 100%);
|
||||
color: #ffffff;
|
||||
border-radius: 999px;
|
||||
padding: 14px 28px;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.01em;
|
||||
box-shadow: 0 12px 28px -10px rgba(3, 199, 90, 0.5),
|
||||
0 0 0 1px rgba(255, 255, 255, 0.14) inset;
|
||||
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
||||
}
|
||||
.btn-grad:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 18px 40px -10px rgba(3, 199, 90, 0.65),
|
||||
0 0 0 1px rgba(255, 255, 255, 0.2) inset;
|
||||
}
|
||||
.btn-ghost {
|
||||
background: #ffffff;
|
||||
color: #0F1D17;
|
||||
border: 1px solid rgba(15, 29, 23, 0.12);
|
||||
border-radius: 999px;
|
||||
padding: 14px 28px;
|
||||
font-weight: 700;
|
||||
transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
|
||||
}
|
||||
.btn-ghost:hover {
|
||||
background: #F2FBF6;
|
||||
border-color: #03C75A;
|
||||
color: #02A149;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Card lift
|
||||
* ----------------------------------------------------------------- */
|
||||
.card-lift {
|
||||
transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
|
||||
box-shadow 0.4s ease,
|
||||
background 0.3s ease;
|
||||
box-shadow: 0 2px 12px -6px rgba(15, 29, 23, 0.1);
|
||||
}
|
||||
.card-lift:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 18px 40px -18px rgba(3, 199, 90, 0.25);
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Link underline
|
||||
* ----------------------------------------------------------------- */
|
||||
.link-underline {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
@@ -100,9 +361,315 @@
|
||||
bottom: -2px;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: var(--color-warm-600);
|
||||
background: #03C75A;
|
||||
transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
}
|
||||
.link-underline:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.link-grad {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.link-grad::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -3px;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, #03C75A, #00C4A7, #0AB070);
|
||||
transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
}
|
||||
.link-grad:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Marquee
|
||||
* ----------------------------------------------------------------- */
|
||||
.marquee-track {
|
||||
display: flex;
|
||||
gap: 3rem;
|
||||
animation: marquee 40s linear infinite;
|
||||
white-space: nowrap;
|
||||
width: max-content;
|
||||
}
|
||||
.marquee-mask {
|
||||
-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
|
||||
mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Conic decorative ring
|
||||
* ----------------------------------------------------------------- */
|
||||
.conic-ring {
|
||||
background: conic-gradient(
|
||||
from 0deg,
|
||||
#03C75A 0deg,
|
||||
#00C4A7 120deg,
|
||||
#2BD673 240deg,
|
||||
#03C75A 360deg
|
||||
);
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.reveal,
|
||||
.animate-fade-up,
|
||||
.animate-fade-in,
|
||||
.animate-slide-right,
|
||||
.animate-spin-slow,
|
||||
.orb,
|
||||
.mesh-blob,
|
||||
.bg-grid-animated,
|
||||
.text-grad-rainbow,
|
||||
.marquee-track {
|
||||
animation: none !important;
|
||||
opacity: 1 !important;
|
||||
transform: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* =================================================================
|
||||
* SITE-WIDE LIGHT THEME OVERRIDES
|
||||
* Remap legacy color tokens (warm / ink / white / sage) to the
|
||||
* new white + Naver green palette. All sub-pages inherit this
|
||||
* without code changes.
|
||||
* ================================================================= */
|
||||
|
||||
/* --- Page / section backgrounds --- */
|
||||
.bg-warm-50,
|
||||
.bg-warm-50\/50,
|
||||
.bg-warm-50\/60,
|
||||
.bg-warm-50\/70,
|
||||
.bg-warm-50\/80 { background-color: #ffffff !important; }
|
||||
|
||||
.bg-warm-100 { background-color: #F7FAF8 !important; }
|
||||
.bg-warm-100\/40 { background-color: rgba(247, 250, 248, 0.6) !important; }
|
||||
.bg-warm-100\/50 { background-color: rgba(247, 250, 248, 0.7) !important; }
|
||||
.bg-warm-100\/60 { background-color: rgba(247, 250, 248, 0.82) !important; }
|
||||
.bg-warm-100\/70 { background-color: rgba(247, 250, 248, 0.9) !important; }
|
||||
|
||||
.bg-warm-200 { background-color: #EFF2F0 !important; }
|
||||
.bg-warm-200\/50 { background-color: rgba(239, 242, 240, 0.7) !important; }
|
||||
|
||||
/* --- Accent tints (warm-400/500/600/700) → Naver green family --- */
|
||||
.bg-warm-400\/15 { background-color: rgba(3, 199, 90, 0.12) !important; color: #02A149 !important; }
|
||||
.bg-warm-400\/30 { background-color: rgba(3, 199, 90, 0.22) !important; color: #02A149 !important; }
|
||||
.bg-warm-400\/40 { background-color: rgba(3, 199, 90, 0.32) !important; color: #02A149 !important; }
|
||||
.bg-warm-500 { background-color: #03C75A !important; color: #ffffff !important; }
|
||||
.bg-warm-500\/10 { background-color: rgba(3, 199, 90, 0.10) !important; }
|
||||
.bg-warm-500\/15 { background-color: rgba(3, 199, 90, 0.16) !important; }
|
||||
.bg-warm-500\/20 { background-color: rgba(3, 199, 90, 0.22) !important; }
|
||||
.bg-warm-600 { background-color: #02A149 !important; color: #ffffff !important; }
|
||||
.bg-warm-600\/90 { background-color: rgba(2, 161, 73, 0.92) !important; color: #ffffff !important; }
|
||||
.bg-warm-700 { background-color: #018f40 !important; color: #ffffff !important; }
|
||||
.bg-warm-800 { background-color: #0F1D17 !important; color: #ffffff !important; }
|
||||
.bg-warm-900 { background-color: #0A1410 !important; color: #ffffff !important; }
|
||||
|
||||
/* --- Ink (dark) backgrounds → near-black text surfaces remain, tint utilities soft gray --- */
|
||||
.bg-ink { background-color: #0F1D17 !important; color: #ffffff !important; }
|
||||
.bg-ink\/5 { background-color: rgba(15, 29, 23, 0.04) !important; }
|
||||
.bg-ink\/10 { background-color: rgba(15, 29, 23, 0.08) !important; }
|
||||
.bg-ink\/20 { background-color: rgba(15, 29, 23, 0.14) !important; }
|
||||
|
||||
/* --- Sage → Naver green (preserve semantic meaning) --- */
|
||||
.bg-sage-500 { background-color: #03C75A !important; color: #ffffff !important; }
|
||||
.bg-sage-500\/5 { background-color: rgba(3, 199, 90, 0.06) !important; }
|
||||
.bg-sage-500\/10 { background-color: rgba(3, 199, 90, 0.12) !important; }
|
||||
.bg-sage-500\/15 { background-color: rgba(3, 199, 90, 0.18) !important; }
|
||||
.bg-sage-500\/90 { background-color: rgba(3, 199, 90, 0.92) !important; color: #ffffff !important; }
|
||||
|
||||
/* --- White backgrounds — keep truly white --- */
|
||||
.bg-white { background-color: #ffffff !important; color: #0F1D17 !important; }
|
||||
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.7) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
|
||||
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.78) !important; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
|
||||
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.85) !important; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
|
||||
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.9) !important; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
|
||||
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.95) !important; }
|
||||
|
||||
/* --- Night backgrounds (dark legacy) → light --- */
|
||||
.bg-night-0 { background-color: #ffffff !important; }
|
||||
.bg-night-0\/70 { background-color: rgba(255, 255, 255, 0.82) !important; }
|
||||
.bg-night-1 { background-color: #F7FAF8 !important; }
|
||||
.bg-night-2 { background-color: #EFF2F0 !important; }
|
||||
.bg-night-3 { background-color: #E4E8E6 !important; }
|
||||
|
||||
/* --- Text colors --- */
|
||||
.text-ink { color: #0F1D17 !important; }
|
||||
.text-ink-light { color: #3E4A44 !important; }
|
||||
.text-ink-muted { color: #7B8581 !important; }
|
||||
.text-warm-50 { color: #ffffff !important; }
|
||||
.text-warm-100 { color: #F7FAF8 !important; }
|
||||
.text-warm-200 { color: #7B8581 !important; }
|
||||
.text-warm-400 { color: #03C75A !important; }
|
||||
.text-warm-500 { color: #03C75A !important; }
|
||||
.text-warm-600 { color: #02A149 !important; }
|
||||
.text-warm-700 { color: #018f40 !important; }
|
||||
.text-warm-800 { color: #0F1D17 !important; }
|
||||
.text-warm-900 { color: #0A1410 !important; }
|
||||
.text-sage-500 { color: #03C75A !important; }
|
||||
.text-sage-600 { color: #02A149 !important; }
|
||||
|
||||
.text-cloud-0 { color: #0F1D17 !important; }
|
||||
.text-cloud-1 { color: rgba(15, 29, 23, 0.92) !important; }
|
||||
.text-cloud-2 { color: rgba(15, 29, 23, 0.68) !important; }
|
||||
.text-cloud-3 { color: rgba(15, 29, 23, 0.5) !important; }
|
||||
.text-cloud-4 { color: rgba(15, 29, 23, 0.35) !important; }
|
||||
|
||||
/* --- Borders --- */
|
||||
.border-ink { border-color: rgba(15, 29, 23, 0.85) !important; }
|
||||
.border-ink\/5 { border-color: rgba(15, 29, 23, 0.06) !important; }
|
||||
.border-ink\/10 { border-color: rgba(15, 29, 23, 0.1) !important; }
|
||||
.border-ink\/15 { border-color: rgba(15, 29, 23, 0.14) !important; }
|
||||
.border-ink\/20 { border-color: rgba(15, 29, 23, 0.18) !important; }
|
||||
.border-ink\/40 { border-color: rgba(15, 29, 23, 0.3) !important; }
|
||||
.border-warm-200 { border-color: #EFF2F0 !important; }
|
||||
.border-warm-200\/30 { border-color: rgba(239, 242, 240, 0.6) !important; }
|
||||
.border-warm-200\/60 { border-color: rgba(228, 232, 230, 0.9) !important; }
|
||||
.border-warm-300\/40 { border-color: rgba(3, 199, 90, 0.28) !important; }
|
||||
.border-warm-500 { border-color: #03C75A !important; }
|
||||
|
||||
.border-white { border-color: #ffffff !important; }
|
||||
.border-white\/5 { border-color: rgba(15, 29, 23, 0.05) !important; }
|
||||
.border-white\/\[0\.06\] { border-color: rgba(15, 29, 23, 0.06) !important; }
|
||||
.border-white\/\[0\.08\] { border-color: rgba(15, 29, 23, 0.08) !important; }
|
||||
.border-white\/10 { border-color: rgba(15, 29, 23, 0.08) !important; }
|
||||
.border-white\/15 { border-color: rgba(15, 29, 23, 0.1) !important; }
|
||||
.border-white\/20 { border-color: rgba(15, 29, 23, 0.12) !important; }
|
||||
.border-white\/30 { border-color: rgba(15, 29, 23, 0.18) !important; }
|
||||
|
||||
/* bg white/0.02, 0.03 etc (glass tints on dark theme) → very subtle gray */
|
||||
.bg-white\/\[0\.02\] { background-color: #FAFCFB !important; }
|
||||
.bg-white\/\[0\.03\] { background-color: #F7FAF8 !important; }
|
||||
.bg-white\/\[0\.04\] { background-color: #F5F8F6 !important; }
|
||||
.bg-white\/\[0\.05\] { background-color: #F2F6F4 !important; }
|
||||
.bg-white\/\[0\.08\] { background-color: #EEF3F0 !important; }
|
||||
|
||||
/* --- Hover variants --- */
|
||||
.hover\:bg-warm-50:hover { background-color: #F7FAF8 !important; }
|
||||
.hover\:bg-warm-100:hover { background-color: #EFF2F0 !important; }
|
||||
.hover\:bg-warm-200:hover { background-color: #E4E8E6 !important; }
|
||||
.hover\:bg-warm-400:hover { background-color: #2BD673 !important; color: #ffffff !important; }
|
||||
.hover\:bg-warm-500:hover { background-color: #02A149 !important; color: #ffffff !important; }
|
||||
.hover\:bg-warm-600:hover { background-color: #018f40 !important; color: #ffffff !important; }
|
||||
.hover\:bg-warm-700:hover { background-color: #0F1D17 !important; color: #ffffff !important; }
|
||||
.hover\:bg-warm-800:hover { background-color: #0A1410 !important; color: #ffffff !important; }
|
||||
.hover\:text-warm-600:hover { color: #02A149 !important; }
|
||||
.hover\:text-warm-700:hover { color: #018f40 !important; }
|
||||
.hover\:text-warm-800:hover { color: #0F1D17 !important; }
|
||||
.hover\:border-ink\/40:hover { border-color: rgba(15, 29, 23, 0.3) !important; }
|
||||
.hover\:border-warm-200:hover { border-color: #03C75A !important; }
|
||||
.hover\:text-cloud-0:hover { color: #03C75A !important; }
|
||||
|
||||
/* --- Form inputs: light theme --- */
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="password"],
|
||||
input[type="number"],
|
||||
input[type="tel"],
|
||||
input[type="url"],
|
||||
input[type="search"],
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input:not([type]),
|
||||
textarea,
|
||||
select {
|
||||
background-color: #ffffff !important;
|
||||
border: 1px solid #E4E8E6 !important;
|
||||
color: #0F1D17 !important;
|
||||
border-radius: 10px;
|
||||
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
input::placeholder,
|
||||
textarea::placeholder {
|
||||
color: rgba(15, 29, 23, 0.42) !important;
|
||||
}
|
||||
input:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
border-color: #03C75A !important;
|
||||
box-shadow: 0 0 0 4px rgba(3, 199, 90, 0.18) !important;
|
||||
outline: none !important;
|
||||
}
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
accent-color: #03C75A;
|
||||
}
|
||||
select option {
|
||||
background-color: #ffffff;
|
||||
color: #0F1D17;
|
||||
}
|
||||
|
||||
/* --- Blog article prose --- */
|
||||
.prose,
|
||||
.prose-lg,
|
||||
.prose-xl {
|
||||
--tw-prose-body: #3E4A44;
|
||||
--tw-prose-headings: #0F1D17;
|
||||
--tw-prose-lead: #3E4A44;
|
||||
--tw-prose-links: #02A149;
|
||||
--tw-prose-bold: #0F1D17;
|
||||
--tw-prose-counters: #7B8581;
|
||||
--tw-prose-bullets: #B6BEB9;
|
||||
--tw-prose-hr: #E4E8E6;
|
||||
--tw-prose-quotes: #0F1D17;
|
||||
--tw-prose-quote-borders: #03C75A;
|
||||
--tw-prose-captions: #7B8581;
|
||||
--tw-prose-code: #02A149;
|
||||
--tw-prose-pre-code: #0F1D17;
|
||||
--tw-prose-pre-bg: #F7FAF8;
|
||||
--tw-prose-th-borders: #E4E8E6;
|
||||
--tw-prose-td-borders: #EFF2F0;
|
||||
}
|
||||
|
||||
*:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
html, body {
|
||||
background-color: #ffffff;
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
* Mobile-first helpers for the app-style home layout
|
||||
* ----------------------------------------------------------------- */
|
||||
.category-tile {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 24px;
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
.category-tile:active { transform: scale(0.98); }
|
||||
.category-tile.primary {
|
||||
background: linear-gradient(135deg, #03C75A 0%, #02A149 55%, #018f40 100%);
|
||||
color: #ffffff;
|
||||
box-shadow: 0 16px 40px -12px rgba(3, 199, 90, 0.45);
|
||||
}
|
||||
.category-tile.soft {
|
||||
background: #F2FBF6;
|
||||
color: #02A149;
|
||||
border: 1px solid #D5EEE0;
|
||||
}
|
||||
.category-tile.neutral {
|
||||
background: #ffffff;
|
||||
color: #0F1D17;
|
||||
border: 1px solid #E4E8E6;
|
||||
}
|
||||
|
||||
/* Photo hero for property detail */
|
||||
.photo-hero {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 4 / 3;
|
||||
overflow: hidden;
|
||||
background: #EFF2F0;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.photo-hero { aspect-ratio: 16 / 9; border-radius: 24px; }
|
||||
}
|
||||
|
||||
+114
-50
@@ -65,93 +65,155 @@ const OPERATOR_ROLES = [
|
||||
'SUPER_ADMIN',
|
||||
];
|
||||
|
||||
const NAV_LINKS = [
|
||||
{ href: '/stores', label: '매장 검색' },
|
||||
{ href: '/stores/new', label: '매장 등록' },
|
||||
{ href: '/matching', label: '매칭' },
|
||||
{ href: '/subsidies', label: '지원금' },
|
||||
{ href: '/vendors', label: '업체' },
|
||||
{ href: '/blog', label: '블로그' },
|
||||
{ href: '/faq', label: 'FAQ' },
|
||||
];
|
||||
|
||||
const MOBILE_TABS = [
|
||||
{ href: '/', label: '홈', icon: 'M3 12l9-9 9 9M5 10v10h14V10' },
|
||||
{ href: '/stores', label: '매장', icon: 'M21 21l-4.35-4.35M16 10a6 6 0 10-12 0 6 6 0 0012 0z' },
|
||||
{ href: '/matching', label: '매칭', icon: 'M7 8h10M7 12h6M7 16h10M3 4h18v16H3z' },
|
||||
{ href: '/subsidies', label: '지원금', icon: 'M12 3v18M6 8h9a3 3 0 010 6H9a3 3 0 000 6h9' },
|
||||
];
|
||||
|
||||
async function Navigation() {
|
||||
const session = await auth();
|
||||
const isOperator = session?.user && OPERATOR_ROLES.includes(session.user.primaryRole);
|
||||
|
||||
return (
|
||||
<nav className="border-b border-ink/5 bg-warm-50/80 backdrop-blur-md">
|
||||
<div className="mx-auto flex h-16 max-w-7xl items-center justify-between px-4">
|
||||
<Link href="/" className="font-display text-xl font-bold text-ink">
|
||||
Startover
|
||||
<nav
|
||||
className="sticky top-0 z-50 border-b bg-white/85 backdrop-blur-xl"
|
||||
style={{ borderColor: '#EFF2F0' }}
|
||||
>
|
||||
<div className="mx-auto flex h-16 max-w-7xl items-center justify-between px-5">
|
||||
<Link
|
||||
href="/"
|
||||
className="group flex items-center gap-2 font-display text-xl font-black tracking-tight text-ink"
|
||||
>
|
||||
<span
|
||||
aria-hidden
|
||||
className="relative inline-flex h-8 w-8 items-center justify-center rounded-lg shadow-[0_6px_14px_-6px_rgba(3,199,90,0.55)]"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg,#03C75A 0%,#02A149 55%,#018f40 100%)',
|
||||
}}
|
||||
>
|
||||
<span className="text-sm font-black text-white">S</span>
|
||||
</span>
|
||||
<span>
|
||||
start<span className="text-grad-primary">over</span>
|
||||
</span>
|
||||
</Link>
|
||||
<div className="flex items-center gap-5">
|
||||
<Link href="/stores" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
매장 검색
|
||||
</Link>
|
||||
<Link href="/stores/new" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
매장 등록
|
||||
</Link>
|
||||
<Link href="/matching" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
매칭
|
||||
</Link>
|
||||
<Link href="/subsidies" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
지원금
|
||||
</Link>
|
||||
<Link href="/vendors" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
업체 인증
|
||||
</Link>
|
||||
<Link href="/blog" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
블로그
|
||||
</Link>
|
||||
<Link href="/faq" className="text-sm text-ink-light hover:text-warm-600 transition-colors">
|
||||
FAQ
|
||||
</Link>
|
||||
<div className="hidden items-center gap-6 md:flex">
|
||||
{NAV_LINKS.map((l) => (
|
||||
<Link
|
||||
key={l.href}
|
||||
href={l.href}
|
||||
className="text-sm font-medium text-ink-light transition-colors hover:text-ink"
|
||||
>
|
||||
{l.label}
|
||||
</Link>
|
||||
))}
|
||||
{isOperator && (
|
||||
<Link
|
||||
href="/admin"
|
||||
className="rounded-full bg-warm-100 px-3 py-1.5 text-sm text-ink-light hover:bg-warm-200"
|
||||
className="rounded-full border px-3 py-1.5 text-sm text-ink-light transition-colors hover:border-naver hover:text-naver"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
운영자
|
||||
</Link>
|
||||
)}
|
||||
<AuthButtons session={session} />
|
||||
</div>
|
||||
{/* Mobile auth shortcut */}
|
||||
<div className="flex items-center gap-2 md:hidden">
|
||||
<AuthButtons session={session} />
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
);
|
||||
}
|
||||
|
||||
function MobileTabBar() {
|
||||
return (
|
||||
<nav
|
||||
className="fixed bottom-0 left-0 right-0 z-40 grid grid-cols-4 border-t bg-white/95 backdrop-blur-xl md:hidden"
|
||||
style={{ borderColor: '#EFF2F0' }}
|
||||
>
|
||||
{MOBILE_TABS.map((t) => (
|
||||
<Link
|
||||
key={t.href}
|
||||
href={t.href}
|
||||
className="flex flex-col items-center gap-1 py-2.5 text-[10px] font-semibold text-ink-light active:text-naver"
|
||||
>
|
||||
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.6} strokeLinecap="round" strokeLinejoin="round">
|
||||
<path d={t.icon} />
|
||||
</svg>
|
||||
{t.label}
|
||||
</Link>
|
||||
))}
|
||||
</nav>
|
||||
);
|
||||
}
|
||||
|
||||
function Footer() {
|
||||
return (
|
||||
<footer className="mt-24 border-t border-ink/5 bg-warm-50/60 font-body">
|
||||
<div className="mx-auto grid max-w-7xl grid-cols-2 gap-8 px-6 py-12 md:grid-cols-4">
|
||||
<footer className="relative mt-24 border-t bg-white font-body" style={{ borderColor: '#EFF2F0' }}>
|
||||
<div className="pointer-events-none absolute inset-0 overflow-hidden opacity-40">
|
||||
<div className="orb orb-iris absolute -left-32 top-10 h-72 w-72" />
|
||||
<div className="orb orb-rose absolute right-0 bottom-0 h-72 w-72" />
|
||||
</div>
|
||||
|
||||
<div className="relative mx-auto grid max-w-7xl grid-cols-2 gap-10 px-6 py-16 md:grid-cols-4">
|
||||
<div>
|
||||
<p className="font-display text-lg font-bold text-ink">Startover</p>
|
||||
<p className="mt-2 text-xs leading-relaxed text-ink-muted">
|
||||
<p className="font-display text-xl font-black tracking-tight text-ink">
|
||||
start<span className="text-grad-primary">over</span>
|
||||
</p>
|
||||
<p className="mt-3 text-xs leading-relaxed text-ink-muted">
|
||||
폐업 · 양도 · 창업을 잇는
|
||||
<br />
|
||||
소상공인 중개 플랫폼
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs font-medium tracking-widest uppercase text-ink-muted">서비스</p>
|
||||
<ul className="mt-3 space-y-2 text-sm">
|
||||
<li><Link href="/stores" className="text-ink-light hover:text-warm-700">매장 검색</Link></li>
|
||||
<li><Link href="/stores/new" className="text-ink-light hover:text-warm-700">매장 등록</Link></li>
|
||||
<li><Link href="/subsidies" className="text-ink-light hover:text-warm-700">지원금</Link></li>
|
||||
<li><Link href="/vendors" className="text-ink-light hover:text-warm-700">업체 인증</Link></li>
|
||||
<p className="font-mono text-[10px] tracking-[0.25em] uppercase text-ink-muted">
|
||||
Service
|
||||
</p>
|
||||
<ul className="mt-4 space-y-2.5 text-sm">
|
||||
<li><Link href="/stores" className="text-ink-light hover:text-ink transition-colors">매장 검색</Link></li>
|
||||
<li><Link href="/stores/new" className="text-ink-light hover:text-ink transition-colors">매장 등록</Link></li>
|
||||
<li><Link href="/subsidies" className="text-ink-light hover:text-ink transition-colors">지원금</Link></li>
|
||||
<li><Link href="/vendors" className="text-ink-light hover:text-ink transition-colors">업체 인증</Link></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs font-medium tracking-widest uppercase text-ink-muted">알아보기</p>
|
||||
<ul className="mt-3 space-y-2 text-sm">
|
||||
<li><Link href="/about" className="text-ink-light hover:text-warm-700">회사 소개</Link></li>
|
||||
<li><Link href="/blog" className="text-ink-light hover:text-warm-700">블로그</Link></li>
|
||||
<li><Link href="/faq" className="text-ink-light hover:text-warm-700">자주 묻는 질문</Link></li>
|
||||
<li><Link href="/contact" className="text-ink-light hover:text-warm-700">문의하기</Link></li>
|
||||
<p className="font-mono text-[10px] tracking-[0.25em] uppercase text-ink-muted">
|
||||
Learn
|
||||
</p>
|
||||
<ul className="mt-4 space-y-2.5 text-sm">
|
||||
<li><Link href="/about" className="text-ink-light hover:text-ink transition-colors">회사 소개</Link></li>
|
||||
<li><Link href="/blog" className="text-ink-light hover:text-ink transition-colors">블로그</Link></li>
|
||||
<li><Link href="/faq" className="text-ink-light hover:text-ink transition-colors">자주 묻는 질문</Link></li>
|
||||
<li><Link href="/contact" className="text-ink-light hover:text-ink transition-colors">문의하기</Link></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs font-medium tracking-widest uppercase text-ink-muted">약관</p>
|
||||
<ul className="mt-3 space-y-2 text-sm">
|
||||
<li><Link href="/terms" className="text-ink-light hover:text-warm-700">이용약관</Link></li>
|
||||
<li><Link href="/privacy" className="text-ink-light hover:text-warm-700">개인정보처리방침</Link></li>
|
||||
<p className="font-mono text-[10px] tracking-[0.25em] uppercase text-ink-muted">
|
||||
Legal
|
||||
</p>
|
||||
<ul className="mt-4 space-y-2.5 text-sm">
|
||||
<li><Link href="/terms" className="text-ink-light hover:text-ink transition-colors">이용약관</Link></li>
|
||||
<li><Link href="/privacy" className="text-ink-light hover:text-ink transition-colors">개인정보처리방침</Link></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div className="border-t border-ink/5 px-6 py-4 text-center text-xs text-ink-muted">
|
||||
© 2026 Startover. All rights reserved.
|
||||
<div className="relative border-t px-6 py-5 text-center font-mono text-[11px] tracking-[0.15em] text-ink-muted" style={{ borderColor: '#EFF2F0' }}>
|
||||
© 2026 STARTOVER · ALL RIGHTS RESERVED
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
@@ -165,6 +227,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta name="theme-color" content="#03C75A" />
|
||||
<Script
|
||||
async
|
||||
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9505789508299290"
|
||||
@@ -172,10 +235,11 @@ export default function RootLayout({
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
</head>
|
||||
<body className="min-h-screen bg-warm-50 font-body">
|
||||
<body className="min-h-screen bg-white font-body text-ink pb-16 md:pb-0">
|
||||
<Navigation />
|
||||
{children}
|
||||
<Footer />
|
||||
<MobileTabBar />
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
+433
-338
@@ -21,15 +21,16 @@ const PROCESS_STEPS = [
|
||||
];
|
||||
|
||||
const STATS = [
|
||||
{ value: '1회', label: '매장 등록으로', sub: '인수자·철거·인테리어 동시 매칭' },
|
||||
{ value: '7개', label: '업종 대분류', sub: '49개 소분류까지 세분화' },
|
||||
{ value: '2~4주', label: '평균 매칭 기간', sub: '운영팀 검수 포함' },
|
||||
{ value: '에스크로', label: '단계별 정산', sub: '사전·중간·최종 검수 후 해제' },
|
||||
{ value: '128', unit: '건', label: '누적 매장 등록', sub: '인수자·철거·인테리어 동시 매칭' },
|
||||
{ value: '7', unit: '개', label: '업종 대분류', sub: '49개 소분류까지 세분화' },
|
||||
{ value: '2–4', unit: '주', label: '평균 매칭 기간', sub: '운영팀 검수 포함' },
|
||||
{ value: '3', unit: '단계', label: '에스크로 정산', sub: '사전·중간·최종 검수' },
|
||||
];
|
||||
|
||||
const BENEFITS = [
|
||||
{
|
||||
label: '매도인',
|
||||
english: 'for sellers',
|
||||
title: '깔끔한 마무리',
|
||||
points: [
|
||||
'매장 한 번 등록으로 인수자·철거업체 동시 매칭',
|
||||
@@ -39,6 +40,7 @@ const BENEFITS = [
|
||||
},
|
||||
{
|
||||
label: '매수인',
|
||||
english: 'for founders',
|
||||
title: '검증된 시작',
|
||||
points: [
|
||||
'운영팀 검수를 통과한 매물만 공개',
|
||||
@@ -48,6 +50,7 @@ const BENEFITS = [
|
||||
},
|
||||
{
|
||||
label: '업체',
|
||||
english: 'for partners',
|
||||
title: '안정적 수주',
|
||||
points: [
|
||||
'인증 통과 후 지역·업종 맞춤 안건이 자동 전달',
|
||||
@@ -72,310 +75,379 @@ const FAQ_PREVIEW = [
|
||||
},
|
||||
];
|
||||
|
||||
const FEATURES = [
|
||||
{
|
||||
label: '폐업자',
|
||||
title: '깔끔한 마무리,\n새로운 시작',
|
||||
desc: '매장 정보를 등록하면 철거비 절감, 시설 처분, 지원금 신청까지 한 번에 해결됩니다.',
|
||||
href: '/stores/new',
|
||||
cta: '매장 등록',
|
||||
accent: 'bg-warm-500',
|
||||
num: '01',
|
||||
},
|
||||
{
|
||||
label: '창업자',
|
||||
title: '검증된 매장,\n합리적 시작',
|
||||
desc: '검증된 매장을 검색하고 매칭 요청을 보내 시설 인수와 인테리어 비용을 절감하세요.',
|
||||
href: '/stores',
|
||||
cta: '매장 검색',
|
||||
accent: 'bg-sage-500',
|
||||
num: '02',
|
||||
},
|
||||
{
|
||||
label: '철거·인테리어 업체',
|
||||
title: '안정적 수주,\n정확한 정산',
|
||||
desc: '인증 업체로 등록하면 안정적인 수주와 정산을 보장받을 수 있습니다.',
|
||||
href: '/vendors',
|
||||
cta: '업체 인증',
|
||||
accent: 'bg-warm-700',
|
||||
num: '03',
|
||||
},
|
||||
];
|
||||
|
||||
const SERVICES = [
|
||||
{
|
||||
title: '정부 지원금 가이드',
|
||||
desc: '폐업 관련 정부 지원금 자격을 확인하고, 체크리스트와 서류 준비를 도와드립니다.',
|
||||
href: '/subsidies',
|
||||
cta: '지원금 확인',
|
||||
icon: (
|
||||
<svg className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" d="M12 6v12m-3-2.818.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" />
|
||||
</svg>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: '안전한 거래',
|
||||
desc: '표준 계약서, 에스크로 결제, 검수 승인 시스템으로 안전한 거래를 보장합니다.',
|
||||
href: '/contracts',
|
||||
cta: '계약 관리',
|
||||
icon: (
|
||||
<svg className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
||||
<path strokeLinecap="round" strokeLinejoin="round" d="M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z" />
|
||||
</svg>
|
||||
),
|
||||
},
|
||||
const MARQUEE_ITEMS = [
|
||||
'매장 한 번 등록',
|
||||
'인수자 · 철거 · 인테리어 동시 매칭',
|
||||
'에스크로 단계별 정산',
|
||||
'희망리턴패키지 자격 자동 조회',
|
||||
'7개 업종 · 49개 소분류 지원',
|
||||
'운영팀 검수 통과 매물만 공개',
|
||||
'권리금 회수기간 자동 계산',
|
||||
];
|
||||
|
||||
export default function HomePage() {
|
||||
const latestPosts = getPostsSortedByDate().slice(0, 4);
|
||||
|
||||
return (
|
||||
<main className="relative overflow-hidden bg-warm-50 font-body">
|
||||
{/* Gradient Mesh Background */}
|
||||
<div className="pointer-events-none absolute inset-0">
|
||||
<div
|
||||
className="mesh-blob bg-warm-200/60 absolute -top-32 -right-32 h-[500px] w-[500px]"
|
||||
style={{ animationDelay: '0s' }}
|
||||
/>
|
||||
<div
|
||||
className="mesh-blob bg-warm-300/40 absolute top-1/3 -left-24 h-[400px] w-[400px]"
|
||||
style={{ animationDelay: '-4s' }}
|
||||
/>
|
||||
<div
|
||||
className="mesh-blob absolute top-2/3 right-1/4 h-[350px] w-[350px] bg-sage-500/15"
|
||||
style={{ animationDelay: '-8s' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Hero Section */}
|
||||
<section className="relative mx-auto max-w-6xl px-6 pt-24 pb-20">
|
||||
<div className="grid grid-cols-1 items-end gap-12 lg:grid-cols-12">
|
||||
{/* Main headline — editorial style, large serif */}
|
||||
<div className="lg:col-span-7">
|
||||
<p
|
||||
className="animate-fade-up text-sm font-medium tracking-[0.2em] uppercase text-warm-600"
|
||||
style={{ animationDelay: '0.1s' }}
|
||||
>
|
||||
폐업 · 양도 · 창업을 잇다
|
||||
</p>
|
||||
<h1
|
||||
className="animate-fade-up mt-6 font-display text-6xl leading-[1.1] font-black tracking-tight text-ink sm:text-7xl lg:text-8xl"
|
||||
style={{ animationDelay: '0.25s' }}
|
||||
>
|
||||
Start
|
||||
<span className="relative">
|
||||
over
|
||||
<span className="absolute -bottom-2 left-0 h-3 w-full bg-warm-400/40" />
|
||||
</span>
|
||||
</h1>
|
||||
<p
|
||||
className="animate-fade-up mt-8 max-w-lg text-lg leading-relaxed font-light text-ink-light"
|
||||
style={{ animationDelay: '0.4s' }}
|
||||
>
|
||||
매장 정보 1회 등록으로
|
||||
<br />
|
||||
창업자 · 철거업체 · 인테리어업체를 동시에 연결합니다.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* CTA buttons — offset right for asymmetry */}
|
||||
<div className="flex flex-col gap-4 lg:col-span-5 lg:items-end lg:pb-4">
|
||||
<Link
|
||||
href="/stores"
|
||||
className="animate-slide-right group inline-flex items-center gap-3 rounded-full bg-ink px-8 py-4 text-base font-medium text-warm-50 transition-colors hover:bg-warm-800"
|
||||
style={{ animationDelay: '0.5s' }}
|
||||
>
|
||||
매장 둘러보기
|
||||
<span className="inline-block transition-transform group-hover:translate-x-1">
|
||||
→
|
||||
</span>
|
||||
</Link>
|
||||
<Link
|
||||
href="/stores/new"
|
||||
className="animate-slide-right inline-flex items-center gap-3 rounded-full border-2 border-ink/15 px-8 py-4 text-base font-medium text-ink transition-colors hover:border-ink/40 hover:bg-warm-100"
|
||||
style={{ animationDelay: '0.65s' }}
|
||||
>
|
||||
매장 등록하기
|
||||
</Link>
|
||||
<main className="relative overflow-hidden bg-white text-ink font-body">
|
||||
{/* ==========================================================
|
||||
* MOBILE APP-STYLE QUICK ACCESS (visible only on small screens)
|
||||
* - 매장 검색: 큰 박스 (primary)
|
||||
* - 매장 등록: 작은 박스 (soft)
|
||||
* - 매칭 / 지원금: 컴팩트 타일
|
||||
* ========================================================== */}
|
||||
<section className="md:hidden px-5 pt-6 pb-2">
|
||||
<div className="flex items-center gap-3">
|
||||
<span className="inline-flex h-9 w-9 items-center justify-center rounded-xl text-white font-black" style={{ background: 'linear-gradient(135deg,#03C75A,#02A149)' }}>S</span>
|
||||
<div>
|
||||
<p className="text-[11px] font-semibold tracking-[0.18em] text-naver-dark" style={{ color: '#02A149' }}>START OVER</p>
|
||||
<p className="text-[13px] text-ink-muted">폐업 · 양도 · 창업을 잇다</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Decorative divider */}
|
||||
<div
|
||||
className="animate-fade-in mt-20 flex items-center gap-4"
|
||||
style={{ animationDelay: '0.8s' }}
|
||||
>
|
||||
<div className="h-px flex-1 bg-ink/10" />
|
||||
<span className="text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
누구를 위한 서비스인가요
|
||||
</span>
|
||||
<div className="h-px flex-1 bg-ink/10" />
|
||||
<div className="mt-5 grid grid-cols-3 grid-rows-2 gap-3">
|
||||
{/* 매장 검색 — 큰 박스 (2×2) */}
|
||||
<Link
|
||||
href="/stores"
|
||||
className="category-tile primary col-span-2 row-span-2 flex flex-col justify-between p-6"
|
||||
>
|
||||
<div>
|
||||
<p className="text-[11px] font-semibold tracking-[0.2em] opacity-90">SEARCH</p>
|
||||
<h2 className="mt-2 font-display text-2xl font-extrabold leading-tight">
|
||||
매장 검색
|
||||
</h2>
|
||||
<p className="mt-2 text-[13px] leading-relaxed opacity-95">
|
||||
검증된 매물을 지역·업종·권리금으로 찾아보세요
|
||||
</p>
|
||||
</div>
|
||||
<div className="mt-4 flex items-center justify-between">
|
||||
<span className="text-[11px] font-semibold opacity-90">128건 공개</span>
|
||||
<span className="inline-flex h-10 w-10 items-center justify-center rounded-full bg-white/20 text-xl">→</span>
|
||||
</div>
|
||||
</Link>
|
||||
|
||||
{/* 매장 등록 — 작은 박스 */}
|
||||
<Link
|
||||
href="/stores/new"
|
||||
className="category-tile soft flex flex-col justify-between p-4"
|
||||
>
|
||||
<div>
|
||||
<p className="text-[10px] font-semibold tracking-[0.2em] opacity-80">REGISTER</p>
|
||||
<h3 className="mt-1 font-display text-base font-extrabold">매장 등록</h3>
|
||||
</div>
|
||||
<span className="text-[11px] font-semibold">3분이면 완료 →</span>
|
||||
</Link>
|
||||
|
||||
{/* 매칭 */}
|
||||
<Link
|
||||
href="/matching"
|
||||
className="category-tile neutral flex flex-col justify-between p-4"
|
||||
>
|
||||
<div>
|
||||
<p className="text-[10px] font-semibold tracking-[0.2em] text-ink-muted">MATCH</p>
|
||||
<h3 className="mt-1 font-display text-base font-extrabold">매칭 요청</h3>
|
||||
</div>
|
||||
<span className="text-[11px] font-semibold" style={{ color: '#02A149' }}>→</span>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
<div className="mt-3 grid grid-cols-4 gap-2">
|
||||
{[
|
||||
{ href: '/subsidies', label: '지원금', emoji: '💰' },
|
||||
{ href: '/vendors', label: '업체', emoji: '🛠' },
|
||||
{ href: '/blog', label: '가이드', emoji: '📖' },
|
||||
{ href: '/faq', label: 'FAQ', emoji: '💬' },
|
||||
].map((q) => (
|
||||
<Link
|
||||
key={q.href}
|
||||
href={q.href}
|
||||
className="flex flex-col items-center gap-1 rounded-2xl border border-line bg-white px-2 py-3 text-center"
|
||||
>
|
||||
<span className="text-lg leading-none">{q.emoji}</span>
|
||||
<span className="text-[11px] font-semibold text-ink">{q.label}</span>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Feature Cards — asymmetric grid */}
|
||||
<section className="relative mx-auto max-w-6xl px-6 pb-24">
|
||||
{/* ==========================================================
|
||||
* HERO (desktop focus, mobile still shows it below quick-access)
|
||||
* ========================================================== */}
|
||||
<section className="relative overflow-hidden md:min-h-[calc(100vh-4rem)]">
|
||||
<div className="pointer-events-none absolute inset-0 bg-grid-animated opacity-80" />
|
||||
<div className="pointer-events-none absolute inset-0 bg-radial-fade" />
|
||||
<div className="pointer-events-none absolute inset-0">
|
||||
<div className="orb orb-iris absolute -top-20 -left-20 h-[520px] w-[520px]" style={{ animationDelay: '0s' }} />
|
||||
<div className="orb orb-violet absolute top-1/4 right-0 h-[440px] w-[440px]" style={{ animationDelay: '-4s' }} />
|
||||
<div className="orb orb-rose absolute bottom-0 left-1/4 h-[380px] w-[380px]" style={{ animationDelay: '-8s' }} />
|
||||
<div className="orb orb-tangerine absolute -bottom-24 right-1/3 h-[320px] w-[320px] opacity-40" style={{ animationDelay: '-12s' }} />
|
||||
</div>
|
||||
|
||||
<div className="relative mx-auto flex md:min-h-[calc(100vh-4rem)] max-w-7xl flex-col justify-center px-6 py-16 md:py-24">
|
||||
<p className="reveal d1 font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="inline-block h-1.5 w-1.5 translate-y-[-2px] rounded-full align-middle mr-2 animate-pulse" style={{ background: '#03C75A' }} />
|
||||
폐업 · 양도 · 창업을 잇다
|
||||
</p>
|
||||
|
||||
<h1 className="reveal d2 mt-6 font-display text-[clamp(3rem,10vw,9rem)] font-black leading-[0.95] tracking-tight text-ink">
|
||||
Start<br />
|
||||
<span className="text-grad-rainbow">over</span>
|
||||
<span className="font-serif italic text-ink" style={{ fontWeight: 400 }}>.</span>
|
||||
</h1>
|
||||
|
||||
<p className="reveal d3 mt-8 max-w-2xl text-lg leading-relaxed text-ink-light sm:text-xl">
|
||||
<span className="font-serif italic text-ink">매장 한 번 등록</span>으로
|
||||
창업자 · 철거 · 인테리어 업체를 동시에 연결하고,
|
||||
정부 지원금 신청까지 한 흐름으로 이어드립니다.
|
||||
</p>
|
||||
|
||||
<div className="reveal d4 mt-10 flex flex-wrap items-center gap-4">
|
||||
<Link href="/stores" className="btn-grad group inline-flex items-center gap-2 text-base">
|
||||
매장 둘러보기
|
||||
<span className="inline-block transition-transform group-hover:translate-x-1">→</span>
|
||||
</Link>
|
||||
<Link href="/stores/new" className="btn-ghost group inline-flex items-center gap-2 text-base">
|
||||
매장 등록
|
||||
<span className="inline-block transition-transform group-hover:translate-x-1">→</span>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
<div className="reveal d5 mt-16 flex flex-wrap items-center gap-3">
|
||||
{[
|
||||
{ k: '업종', v: '7개 대분류' },
|
||||
{ k: '세분류', v: '49개' },
|
||||
{ k: '정산', v: '에스크로 3단계' },
|
||||
{ k: '지원금', v: '자격 자동 조회' },
|
||||
].map((p) => (
|
||||
<span
|
||||
key={p.k}
|
||||
className="inline-flex items-center gap-2 rounded-full border border-line bg-white px-4 py-2 text-xs text-ink-light"
|
||||
>
|
||||
<span className="font-mono text-[10px] uppercase tracking-widest text-ink-muted">{p.k}</span>
|
||||
<span className="text-ink">{p.v}</span>
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* ==========================================================
|
||||
* MARQUEE
|
||||
* ========================================================== */}
|
||||
<section className="relative border-y border-line bg-surface-soft py-8" style={{ background: '#F7FAF8' }}>
|
||||
<div className="marquee-mask overflow-hidden">
|
||||
<div className="marquee-track">
|
||||
{[...MARQUEE_ITEMS, ...MARQUEE_ITEMS].map((item, i) => (
|
||||
<span key={i} className="flex items-center gap-12 font-serif text-2xl italic text-ink-light md:text-3xl">
|
||||
{item}
|
||||
<span className="inline-block h-1.5 w-1.5 rounded-full" style={{ background: 'linear-gradient(90deg,#03C75A,#00C4A7)' }} />
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* ==========================================================
|
||||
* FOR WHO — 3 role cards (desktop primary)
|
||||
* ========================================================== */}
|
||||
<section className="relative mx-auto max-w-7xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12 flex flex-col items-start justify-between gap-6 md:flex-row md:items-end">
|
||||
<div>
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 01 · For Who
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl md:text-6xl">
|
||||
<span className="font-serif italic font-normal text-ink-light">누구</span>를 위한
|
||||
<br />
|
||||
서비스인가요
|
||||
</h2>
|
||||
</div>
|
||||
<p className="max-w-md text-sm leading-relaxed text-ink-light">
|
||||
폐업자 · 창업자 · 업체 — 매장 거래의 세 주체가 한 플랫폼에서
|
||||
안전하게 연결됩니다.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 gap-6 md:grid-cols-3">
|
||||
{FEATURES.map((f, i) => (
|
||||
{[
|
||||
{ label: '폐업자', english: 'Closing owners', title: '깔끔한 마무리,\n새로운 시작', desc: '매장 정보를 등록하면 철거비 절감, 시설 처분, 지원금 신청까지 한 번에 해결됩니다.', href: '/stores/new', cta: '매장 등록', num: '01' },
|
||||
{ label: '창업자', english: 'Founders', title: '검증된 매장,\n합리적 시작', desc: '검증된 매장을 검색하고 매칭 요청을 보내 시설 인수와 인테리어 비용을 절감하세요.', href: '/stores', cta: '매장 검색', num: '02' },
|
||||
{ label: '철거·인테리어 업체', english: 'Partners', title: '안정적 수주,\n정확한 정산', desc: '인증 업체로 등록하면 안정적인 수주와 정산을 보장받을 수 있습니다.', href: '/vendors', cta: '업체 인증', num: '03' },
|
||||
].map((f) => (
|
||||
<Link
|
||||
key={f.num}
|
||||
href={f.href}
|
||||
className="card-lift animate-fade-up group relative rounded-2xl border border-ink/5 bg-white/70 p-8 backdrop-blur-sm"
|
||||
style={{ animationDelay: `${0.9 + i * 0.12}s` }}
|
||||
className="grad-border group relative overflow-hidden p-8"
|
||||
style={{ minHeight: 360 }}
|
||||
>
|
||||
{/* Number accent */}
|
||||
<span className="font-display text-5xl font-bold text-ink/[0.04]">
|
||||
{f.num}
|
||||
</span>
|
||||
|
||||
{/* Accent bar */}
|
||||
<div className={`mt-4 h-1 w-10 rounded-full ${f.accent}`} />
|
||||
|
||||
<p className="mt-4 text-xs font-medium tracking-widest uppercase text-ink-muted">
|
||||
{f.label}
|
||||
<div className="pointer-events-none absolute -top-20 -right-20 h-48 w-48 rounded-full opacity-50 blur-3xl transition-opacity group-hover:opacity-80" style={{ background: 'radial-gradient(circle,#03C75A,transparent 70%)' }} />
|
||||
<span className="font-mono text-[10px] tracking-[0.25em] uppercase text-ink-muted">{f.english}</span>
|
||||
<p className="mt-2 inline-flex items-center gap-2 text-xs font-medium tracking-widest uppercase text-ink-light">
|
||||
<span className="font-serif text-5xl font-normal not-italic leading-none text-grad-primary">{f.num}</span>
|
||||
<span className="ml-2">{f.label}</span>
|
||||
</p>
|
||||
<h3 className="mt-3 font-display text-2xl leading-snug font-bold text-ink whitespace-pre-line">
|
||||
{f.title}
|
||||
</h3>
|
||||
<p className="mt-4 text-sm leading-relaxed text-ink-light">
|
||||
{f.desc}
|
||||
</p>
|
||||
|
||||
<span className="link-underline mt-6 inline-flex items-center gap-1 text-sm font-medium text-warm-700 transition-colors group-hover:text-warm-600">
|
||||
{f.cta}
|
||||
<span className="inline-block transition-transform group-hover:translate-x-1">
|
||||
→
|
||||
</span>
|
||||
<h3 className="mt-8 font-display text-2xl font-bold leading-[1.2] whitespace-pre-line text-ink">{f.title}</h3>
|
||||
<p className="mt-4 text-sm leading-relaxed text-ink-light">{f.desc}</p>
|
||||
<span className="absolute bottom-8 left-8 inline-flex items-center gap-2 text-sm font-semibold text-ink transition-transform group-hover:translate-x-1">
|
||||
{f.cta}<span className="text-grad-primary text-base">→</span>
|
||||
</span>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Services section */}
|
||||
<section className="relative mx-auto max-w-6xl px-6 pb-32">
|
||||
<div className="grid grid-cols-1 gap-6 md:grid-cols-2">
|
||||
{SERVICES.map((s, i) => (
|
||||
<Link
|
||||
key={s.title}
|
||||
href={s.href}
|
||||
className="card-lift animate-fade-up group flex gap-6 rounded-2xl border border-ink/5 bg-white/50 p-8 backdrop-blur-sm"
|
||||
style={{ animationDelay: `${1.3 + i * 0.12}s` }}
|
||||
>
|
||||
<div className="flex h-12 w-12 shrink-0 items-center justify-center rounded-xl bg-warm-100 text-warm-700 transition-colors group-hover:bg-warm-200">
|
||||
{s.icon}
|
||||
{/* ==========================================================
|
||||
* PROCESS
|
||||
* ========================================================== */}
|
||||
<section className="relative border-y border-line" style={{ background: '#F7FAF8' }}>
|
||||
<div className="pointer-events-none absolute inset-0 overflow-hidden opacity-50">
|
||||
<div className="orb orb-iris absolute -top-20 left-0 h-80 w-80" />
|
||||
<div className="orb orb-tangerine absolute -bottom-20 right-0 h-80 w-80" />
|
||||
</div>
|
||||
|
||||
<div className="relative mx-auto max-w-7xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12 max-w-3xl">
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 02 · Process
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl md:text-6xl">
|
||||
매장 한 번,
|
||||
<br />
|
||||
<span className="text-grad-rainbow">세 단계</span>로 완료
|
||||
</h2>
|
||||
<p className="mt-6 text-ink-light">
|
||||
인수 · 양도 · 철거 · 인테리어 · 지원금까지 흩어진 절차를
|
||||
하나의 흐름으로 묶었습니다.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 gap-6 md:grid-cols-3">
|
||||
{PROCESS_STEPS.map((step, i) => (
|
||||
<div key={step.num} className="relative">
|
||||
{i < PROCESS_STEPS.length - 1 && (
|
||||
<div className="hidden md:block absolute top-14 left-full z-0 h-px w-6 bg-gradient-to-r from-naver to-transparent" style={{ background: 'linear-gradient(90deg,rgba(3,199,90,0.35),transparent)' }} />
|
||||
)}
|
||||
<div className="relative z-10 rounded-2xl border border-line bg-white p-8 shadow-[0_2px_12px_-8px_rgba(15,29,23,0.1)]">
|
||||
<div className="flex items-center gap-4">
|
||||
<span
|
||||
className="inline-flex h-14 w-14 items-center justify-center rounded-xl font-mono text-lg font-bold text-white shadow-[0_10px_24px_-8px_rgba(3,199,90,0.5)]"
|
||||
style={{ background: 'linear-gradient(135deg,#03C75A 0%,#02A149 60%,#018f40 100%)' }}
|
||||
>
|
||||
{step.num}
|
||||
</span>
|
||||
<h3 className="font-display text-2xl font-bold text-ink">{step.title}</h3>
|
||||
</div>
|
||||
<p className="mt-5 text-sm leading-relaxed text-ink-light">{step.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-display text-xl font-bold text-ink">
|
||||
{s.title}
|
||||
</h3>
|
||||
<p className="mt-2 text-sm leading-relaxed text-ink-light">
|
||||
{s.desc}
|
||||
</p>
|
||||
<span className="link-underline mt-4 inline-flex items-center gap-1 text-sm font-medium text-warm-700 transition-colors group-hover:text-warm-600">
|
||||
{s.cta}
|
||||
<span className="inline-block transition-transform group-hover:translate-x-1">
|
||||
→
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</Link>
|
||||
))}
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Stats band */}
|
||||
<section className="relative border-y border-ink/5 bg-white/50 backdrop-blur-sm">
|
||||
<div className="mx-auto grid max-w-6xl grid-cols-2 gap-8 px-6 py-14 md:grid-cols-4">
|
||||
{/* ==========================================================
|
||||
* STATS
|
||||
* ========================================================== */}
|
||||
<section className="relative mx-auto max-w-7xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12">
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 03 · Numbers
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl">
|
||||
숫자로 보는 <span className="font-serif italic font-normal text-ink-light">startover</span>
|
||||
</h2>
|
||||
</div>
|
||||
<div className="grid grid-cols-2 gap-6 md:grid-cols-4">
|
||||
{STATS.map((s) => (
|
||||
<div key={s.label} className="text-center">
|
||||
<p className="font-display text-4xl font-black text-ink">{s.value}</p>
|
||||
<p className="mt-2 text-sm font-medium text-ink">{s.label}</p>
|
||||
<div key={s.label} className="rounded-2xl border border-line bg-white p-7 shadow-[0_2px_12px_-8px_rgba(15,29,23,0.1)]">
|
||||
<p className="flex items-baseline gap-1 font-display">
|
||||
<span className="text-6xl font-black tracking-tight text-grad-primary">{s.value}</span>
|
||||
<span className="text-xl font-bold text-ink-light">{s.unit}</span>
|
||||
</p>
|
||||
<p className="mt-4 text-sm font-semibold text-ink">{s.label}</p>
|
||||
<p className="mt-1 text-xs text-ink-muted">{s.sub}</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* How it works */}
|
||||
<section className="relative mx-auto max-w-6xl px-6 py-24">
|
||||
<div className="mb-12 text-center">
|
||||
<p className="text-xs font-medium tracking-[0.3em] uppercase text-warm-600">How it works</p>
|
||||
<h2 className="mt-4 font-display text-3xl font-bold text-ink sm:text-4xl">
|
||||
매장 한 번 등록, 세 단계로 완료
|
||||
</h2>
|
||||
<p className="mt-4 text-ink-light">
|
||||
인수·양도·철거·인테리어·지원금까지 흩어진 절차를 하나의 흐름으로 묶었습니다
|
||||
</p>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 gap-6 md:grid-cols-3">
|
||||
{PROCESS_STEPS.map((step) => (
|
||||
<div
|
||||
key={step.num}
|
||||
className="relative rounded-2xl border border-ink/5 bg-white/70 p-8 backdrop-blur-sm"
|
||||
>
|
||||
<span className="font-display text-5xl font-bold text-warm-400/30">{step.num}</span>
|
||||
<h3 className="mt-4 font-display text-xl font-bold text-ink">{step.title}</h3>
|
||||
<p className="mt-3 text-sm leading-relaxed text-ink-light">{step.desc}</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Industry categories showcase */}
|
||||
<section className="relative border-t border-ink/5 bg-warm-100/40">
|
||||
<div className="mx-auto max-w-6xl px-6 py-24">
|
||||
<div className="mb-12 flex items-end justify-between">
|
||||
{/* ==========================================================
|
||||
* CATEGORIES
|
||||
* ========================================================== */}
|
||||
<section className="relative border-y border-line" style={{ background: '#F7FAF8' }}>
|
||||
<div className="pointer-events-none absolute inset-0 bg-dot opacity-40" />
|
||||
<div className="relative mx-auto max-w-7xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12 flex flex-col items-start justify-between gap-6 md:flex-row md:items-end">
|
||||
<div>
|
||||
<p className="text-xs font-medium tracking-[0.3em] uppercase text-warm-600">Categories</p>
|
||||
<h2 className="mt-3 font-display text-3xl font-bold text-ink">지원 업종</h2>
|
||||
<p className="mt-3 text-ink-light">
|
||||
휴게음식점부터 기타업종까지 7개 대분류, 49개 소분류를 지원합니다
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 04 · Categories
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl">
|
||||
지원 <span className="text-grad-primary">업종</span>
|
||||
</h2>
|
||||
<p className="mt-5 max-w-xl text-ink-light">
|
||||
휴게음식점부터 기타업종까지 7개 대분류,
|
||||
49개 소분류를 지원합니다.
|
||||
</p>
|
||||
</div>
|
||||
<Link
|
||||
href="/stores"
|
||||
className="hidden text-sm font-medium text-warm-700 hover:text-warm-600 md:inline-flex"
|
||||
className="link-grad hidden text-sm font-semibold text-ink md:inline-flex md:items-center md:gap-2"
|
||||
>
|
||||
전체 매장 보기 →
|
||||
전체 매장 보기 <span className="text-grad-primary">→</span>
|
||||
</Link>
|
||||
</div>
|
||||
<div className="grid grid-cols-2 gap-4 md:grid-cols-4 lg:grid-cols-7">
|
||||
<div className="grid grid-cols-2 gap-3 md:grid-cols-4 lg:grid-cols-7">
|
||||
{INDUSTRY_MAJORS.map((m) => (
|
||||
<Link
|
||||
key={m.code}
|
||||
href={`/stores?industryMajor=${m.code}`}
|
||||
className="rounded-2xl border border-ink/5 bg-white/70 p-5 text-center backdrop-blur-sm card-lift"
|
||||
className="group relative overflow-hidden rounded-2xl border border-line bg-white p-5 text-center transition-all hover:-translate-y-1 hover:border-naver hover:shadow-[0_12px_24px_-12px_rgba(3,199,90,0.3)]"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
<p className="font-display font-bold text-ink">{m.label}</p>
|
||||
<p className="mt-1 text-xs text-ink-muted">{m.children.length}개 소분류</p>
|
||||
<p className="font-display text-base font-bold text-ink transition-colors group-hover:text-grad-primary">
|
||||
{m.label}
|
||||
</p>
|
||||
<p className="mt-1 font-mono text-[10px] text-ink-muted">
|
||||
{m.children.length} sub
|
||||
</p>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Benefits for three roles */}
|
||||
<section className="relative mx-auto max-w-6xl px-6 py-24">
|
||||
<div className="mb-12 text-center">
|
||||
<p className="text-xs font-medium tracking-[0.3em] uppercase text-warm-600">Benefits</p>
|
||||
<h2 className="mt-4 font-display text-3xl font-bold text-ink sm:text-4xl">
|
||||
각자에게 필요한 혜택
|
||||
{/* ==========================================================
|
||||
* BENEFITS
|
||||
* ========================================================== */}
|
||||
<section className="relative mx-auto max-w-7xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12 max-w-3xl">
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 05 · Benefits
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl md:text-6xl">
|
||||
각자에게 필요한
|
||||
<br />
|
||||
<span className="text-grad-primary">혜택</span>
|
||||
</h2>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 gap-6 md:grid-cols-3">
|
||||
{BENEFITS.map((b) => (
|
||||
<div
|
||||
key={b.label}
|
||||
className="rounded-2xl border border-ink/5 bg-white/70 p-8 backdrop-blur-sm"
|
||||
>
|
||||
<p className="text-xs font-medium tracking-widest uppercase text-warm-700">{b.label}</p>
|
||||
<h3 className="mt-3 font-display text-2xl font-bold text-ink">{b.title}</h3>
|
||||
<ul className="mt-5 space-y-3">
|
||||
<div key={b.label} className="grad-border group relative overflow-hidden p-8">
|
||||
<div className="pointer-events-none absolute -top-24 -right-16 h-48 w-48 rounded-full opacity-40 blur-3xl transition-opacity group-hover:opacity-70" style={{ background: 'radial-gradient(circle,#03C75A,transparent 70%)' }} />
|
||||
<p className="font-mono text-[10px] tracking-[0.25em] uppercase text-ink-muted">{b.english}</p>
|
||||
<p className="mt-1 text-xs font-semibold tracking-widest uppercase text-ink-light">{b.label}</p>
|
||||
<h3 className="mt-4 font-display text-3xl font-bold text-ink">{b.title}</h3>
|
||||
<ul className="mt-7 space-y-4">
|
||||
{b.points.map((p) => (
|
||||
<li key={p} className="flex gap-2 text-sm leading-relaxed text-ink-light">
|
||||
<span className="mt-1 h-1.5 w-1.5 shrink-0 rounded-full bg-warm-500" />
|
||||
<li key={p} className="flex gap-3 text-sm leading-relaxed text-ink-light">
|
||||
<span
|
||||
className="mt-1.5 h-2 w-2 shrink-0 rounded-full"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg,#03C75A,#02A149)',
|
||||
boxShadow: '0 0 8px rgba(3,199,90,0.6)',
|
||||
}}
|
||||
/>
|
||||
{p}
|
||||
</li>
|
||||
))}
|
||||
@@ -385,105 +457,128 @@ export default function HomePage() {
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Latest blog posts */}
|
||||
<section className="relative border-t border-ink/5 bg-warm-50/60">
|
||||
<div className="mx-auto max-w-6xl px-6 py-24">
|
||||
<div className="mb-12 flex items-end justify-between">
|
||||
<div>
|
||||
<p className="text-xs font-medium tracking-[0.3em] uppercase text-warm-600">Journal</p>
|
||||
<h2 className="mt-3 font-display text-3xl font-bold text-ink">실무 가이드</h2>
|
||||
<p className="mt-3 text-ink-light">
|
||||
폐업 절차, 지원금 신청, 상권 분석 — 현장에서 자주 묻는 질문을 글로 정리합니다
|
||||
</p>
|
||||
</div>
|
||||
<Link
|
||||
href="/blog"
|
||||
className="hidden text-sm font-medium text-warm-700 hover:text-warm-600 md:inline-flex"
|
||||
>
|
||||
블로그 전체 보기 →
|
||||
</Link>
|
||||
{/* ==========================================================
|
||||
* BLOG
|
||||
* ========================================================== */}
|
||||
<section className="relative mx-auto max-w-7xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12 flex flex-col items-start justify-between gap-6 md:flex-row md:items-end">
|
||||
<div>
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 06 · Journal
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl">
|
||||
실무 <span className="font-serif italic font-normal text-ink-light">가이드</span>
|
||||
</h2>
|
||||
<p className="mt-5 max-w-xl text-ink-light">
|
||||
폐업 절차, 지원금 신청, 상권 분석 — 현장에서 자주 묻는
|
||||
질문을 글로 정리합니다.
|
||||
</p>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-4">
|
||||
{latestPosts.map((post) => (
|
||||
<Link
|
||||
key={post.slug}
|
||||
href={`/blog/${post.slug}`}
|
||||
className="group flex flex-col rounded-2xl border border-ink/5 bg-white/70 p-6 backdrop-blur-sm card-lift"
|
||||
>
|
||||
<span className="inline-flex w-fit rounded-full bg-warm-100 px-2.5 py-0.5 text-xs font-medium text-warm-800">
|
||||
{post.category}
|
||||
</span>
|
||||
<h3 className="mt-3 flex-1 font-display font-bold leading-snug text-ink group-hover:text-warm-700 transition-colors line-clamp-2">
|
||||
{post.title}
|
||||
</h3>
|
||||
<p className="mt-2 text-xs leading-relaxed text-ink-muted line-clamp-3">
|
||||
{post.description}
|
||||
</p>
|
||||
<p className="mt-4 text-xs text-ink-muted">
|
||||
{post.publishedAt} · {post.readMinutes}분 읽기
|
||||
</p>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* FAQ preview */}
|
||||
<section className="relative mx-auto max-w-4xl px-6 py-24">
|
||||
<div className="mb-12 text-center">
|
||||
<p className="text-xs font-medium tracking-[0.3em] uppercase text-warm-600">FAQ</p>
|
||||
<h2 className="mt-4 font-display text-3xl font-bold text-ink sm:text-4xl">
|
||||
자주 묻는 질문
|
||||
</h2>
|
||||
</div>
|
||||
<div className="space-y-3">
|
||||
{FAQ_PREVIEW.map((f, i) => (
|
||||
<details
|
||||
key={i}
|
||||
className="group rounded-2xl border border-ink/5 bg-white/70 p-6 backdrop-blur-sm"
|
||||
>
|
||||
<summary className="flex cursor-pointer items-start justify-between gap-4 list-none">
|
||||
<span className="font-display font-semibold text-ink">{f.q}</span>
|
||||
<span className="mt-1 shrink-0 text-ink-muted transition-transform group-open:rotate-45">
|
||||
+
|
||||
</span>
|
||||
</summary>
|
||||
<p className="mt-4 text-sm leading-relaxed text-ink-light">{f.a}</p>
|
||||
</details>
|
||||
))}
|
||||
</div>
|
||||
<div className="mt-10 text-center">
|
||||
<Link
|
||||
href="/faq"
|
||||
className="inline-flex items-center gap-2 text-sm font-medium text-warm-700 hover:text-warm-600"
|
||||
href="/blog"
|
||||
className="link-grad hidden text-sm font-semibold text-ink md:inline-flex md:items-center md:gap-2"
|
||||
>
|
||||
전체 FAQ 보기
|
||||
<span>→</span>
|
||||
블로그 전체 보기 <span className="text-grad-primary">→</span>
|
||||
</Link>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 gap-5 md:grid-cols-2 lg:grid-cols-4">
|
||||
{latestPosts.map((post) => (
|
||||
<Link
|
||||
key={post.slug}
|
||||
href={`/blog/${post.slug}`}
|
||||
className="group flex flex-col rounded-2xl border border-line bg-white p-6 transition-all hover:-translate-y-1 hover:border-naver hover:shadow-[0_18px_30px_-18px_rgba(3,199,90,0.35)]"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
<span className="inline-flex w-fit rounded-full border border-line bg-surface-soft px-2.5 py-1 font-mono text-[10px] tracking-widest uppercase text-ink-light" style={{ background: '#F2FBF6', borderColor: '#D5EEE0' }}>
|
||||
{post.category}
|
||||
</span>
|
||||
<h3 className="mt-4 flex-1 font-display font-bold leading-snug text-ink transition-colors group-hover:text-grad-primary line-clamp-2">
|
||||
{post.title}
|
||||
</h3>
|
||||
<p className="mt-3 text-xs leading-relaxed text-ink-muted line-clamp-3">
|
||||
{post.description}
|
||||
</p>
|
||||
<p className="mt-5 font-mono text-[10px] tracking-wider text-ink-muted">
|
||||
{post.publishedAt} · {post.readMinutes}min
|
||||
</p>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Final CTA */}
|
||||
<section className="relative border-t border-ink/5 bg-ink">
|
||||
<div className="mx-auto max-w-5xl px-6 py-20 text-center">
|
||||
<h2 className="font-display text-3xl font-bold text-warm-50 sm:text-4xl">
|
||||
지금 매장을 등록하거나 둘러보세요
|
||||
</h2>
|
||||
<p className="mt-4 text-sm text-warm-200 sm:text-base">
|
||||
한 번의 등록으로 인수자, 철거업체, 인테리어업체, 지원금까지 연결됩니다
|
||||
</p>
|
||||
<div className="mt-10 flex flex-wrap justify-center gap-3">
|
||||
{/* ==========================================================
|
||||
* FAQ
|
||||
* ========================================================== */}
|
||||
<section className="relative border-y border-line" style={{ background: '#F7FAF8' }}>
|
||||
<div className="pointer-events-none absolute inset-0 overflow-hidden opacity-60">
|
||||
<div className="orb orb-violet absolute top-0 right-0 h-96 w-96" />
|
||||
<div className="orb orb-iris absolute bottom-0 left-0 h-96 w-96" />
|
||||
</div>
|
||||
<div className="relative mx-auto max-w-4xl px-6 py-20 md:py-28">
|
||||
<div className="mb-12 text-center">
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> 07 · FAQ
|
||||
</p>
|
||||
<h2 className="mt-4 font-display text-4xl font-black tracking-tight text-ink sm:text-5xl">
|
||||
자주 묻는 <span className="text-grad-primary">질문</span>
|
||||
</h2>
|
||||
</div>
|
||||
<div className="space-y-3">
|
||||
{FAQ_PREVIEW.map((f, i) => (
|
||||
<details
|
||||
key={i}
|
||||
className="group rounded-2xl border border-line bg-white p-6 open:border-naver transition-colors shadow-[0_2px_12px_-8px_rgba(15,29,23,0.08)]"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
<summary className="flex cursor-pointer items-start justify-between gap-4 list-none">
|
||||
<span className="font-display text-base font-semibold text-ink">{f.q}</span>
|
||||
<span className="mt-1 inline-flex h-6 w-6 shrink-0 items-center justify-center rounded-full border border-line text-sm text-ink-light transition-transform group-open:rotate-45" style={{ borderColor: '#E4E8E6' }}>+</span>
|
||||
</summary>
|
||||
<p className="mt-4 text-sm leading-relaxed text-ink-light">{f.a}</p>
|
||||
</details>
|
||||
))}
|
||||
</div>
|
||||
<div className="mt-10 text-center">
|
||||
<Link
|
||||
href="/stores/new"
|
||||
className="rounded-full bg-warm-500 px-8 py-4 text-sm font-medium text-warm-50 transition-colors hover:bg-warm-400"
|
||||
href="/faq"
|
||||
className="inline-flex items-center gap-2 font-mono text-xs tracking-widest uppercase text-ink-light hover:text-naver transition-colors"
|
||||
>
|
||||
매장 등록
|
||||
전체 FAQ 보기 <span className="text-grad-primary">→</span>
|
||||
</Link>
|
||||
<Link
|
||||
href="/stores"
|
||||
className="rounded-full border-2 border-warm-200/30 px-8 py-4 text-sm font-medium text-warm-50 transition-colors hover:border-warm-200/60"
|
||||
>
|
||||
매장 둘러보기
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* ==========================================================
|
||||
* FINAL CTA
|
||||
* ========================================================== */}
|
||||
<section className="relative overflow-hidden">
|
||||
<div
|
||||
className="pointer-events-none absolute inset-0 opacity-95"
|
||||
style={{
|
||||
background:
|
||||
'radial-gradient(ellipse at 30% 40%, rgba(3,199,90,0.2) 0%, transparent 55%), radial-gradient(ellipse at 70% 60%, rgba(0,196,167,0.18) 0%, transparent 55%), radial-gradient(ellipse at 50% 100%, rgba(43,214,115,0.14) 0%, transparent 65%), #ffffff',
|
||||
}}
|
||||
/>
|
||||
<div className="pointer-events-none absolute inset-0 bg-grid opacity-40" />
|
||||
|
||||
<div className="relative mx-auto max-w-5xl px-6 py-24 md:py-32 text-center">
|
||||
<p className="font-mono text-xs tracking-[0.3em] uppercase text-ink-muted">Get started</p>
|
||||
<h2 className="mt-5 font-display text-5xl font-black tracking-tight text-ink sm:text-6xl md:text-7xl">
|
||||
<span className="font-serif italic font-normal text-ink">지금</span>,<br />
|
||||
<span className="text-grad-rainbow">새로 시작</span>하세요
|
||||
</h2>
|
||||
<p className="mx-auto mt-8 max-w-2xl text-lg leading-relaxed text-ink-light">
|
||||
한 번의 등록으로 인수자 · 철거 · 인테리어 · 지원금까지.
|
||||
<br className="hidden md:block" />
|
||||
흩어진 절차를 한 흐름으로 정돈합니다.
|
||||
</p>
|
||||
<div className="mt-12 flex flex-wrap justify-center gap-4">
|
||||
<Link href="/stores/new" className="btn-grad inline-flex items-center gap-2 text-base">
|
||||
매장 등록 <span>→</span>
|
||||
</Link>
|
||||
<Link href="/stores" className="btn-ghost inline-flex items-center gap-2 text-base">
|
||||
매장 둘러보기 <span>→</span>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -46,7 +46,6 @@ async function handleDeleteDraft(formData: FormData) {
|
||||
|
||||
function formatKRW(value: number | null | undefined): string {
|
||||
if (value == null) return '-';
|
||||
// DB는 원 단위 → 표시는 만원/억 단위로
|
||||
const won = Number(value);
|
||||
if (won === 0) return '0원';
|
||||
const eok = Math.floor(won / 100_000_000);
|
||||
@@ -70,6 +69,15 @@ function formatPaybackMonths(premium?: number | null, profit?: number | null): s
|
||||
return `${months.toFixed(1)}개월`;
|
||||
}
|
||||
|
||||
const STATUS_META: Record<string, { label: string; bg: string; fg: string }> = {
|
||||
OPEN: { label: '거래 가능', bg: '#03C75A', fg: '#ffffff' },
|
||||
MATCHING: { label: '매칭 중', bg: '#00C4A7', fg: '#ffffff' },
|
||||
RESERVED: { label: '예약', bg: '#84E1A1', fg: '#0F1D17' },
|
||||
CONTRACTED: { label: '계약 진행 중', bg: '#0AB070', fg: '#ffffff' },
|
||||
CLOSED: { label: '거래 완료', bg: '#7B8581', fg: '#ffffff' },
|
||||
CANCELLED: { label: '취소', bg: '#E4E8E6', fg: '#0F1D17' },
|
||||
};
|
||||
|
||||
export default async function StoreDetailPage({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
const prisma = createPrismaClient();
|
||||
@@ -94,21 +102,7 @@ export default async function StoreDetailPage({ params }: { params: Promise<{ id
|
||||
notFound();
|
||||
}
|
||||
|
||||
const statusLabel =
|
||||
store.dealStatus === 'OPEN'
|
||||
? '거래 가능'
|
||||
: store.dealStatus === 'MATCHING'
|
||||
? '매칭 중'
|
||||
: store.dealStatus === 'CONTRACTED'
|
||||
? '계약 진행 중'
|
||||
: store.dealStatus;
|
||||
|
||||
const statusClass =
|
||||
store.dealStatus === 'OPEN'
|
||||
? 'bg-sage-500/10 text-sage-600'
|
||||
: store.dealStatus === 'MATCHING'
|
||||
? 'bg-warm-400/15 text-warm-700'
|
||||
: 'bg-ink/5 text-ink-muted';
|
||||
const status = STATUS_META[store.dealStatus] ?? { label: store.dealStatus, bg: '#E4E8E6', fg: '#0F1D17' };
|
||||
|
||||
const industryLabel = [
|
||||
store.industryLeaf?.parent?.nameKo,
|
||||
@@ -122,281 +116,312 @@ export default async function StoreDetailPage({ params }: { params: Promise<{ id
|
||||
const profit = store.sale?.monthlyProfitAmount ?? null;
|
||||
const startup = store.sale?.startupCostAmount ?? null;
|
||||
|
||||
return (
|
||||
<main className="mx-auto max-w-4xl px-6 py-10 font-body">
|
||||
<div className="mb-6">
|
||||
<Link href="/stores" className="text-sm text-warm-600 hover:text-warm-700">
|
||||
← 매장 목록으로
|
||||
</Link>
|
||||
</div>
|
||||
const heroPhoto = store.photos.find((p) => p.isRepresentative) ?? store.photos[0] ?? null;
|
||||
const restPhotos = store.photos.filter((p) => p.id !== heroPhoto?.id).slice(0, 8);
|
||||
|
||||
<div className="animate-fade-up rounded-2xl border border-ink/5 bg-white/70 backdrop-blur-sm p-8">
|
||||
<div className="flex items-start justify-between">
|
||||
<div>
|
||||
<h1 className="font-display text-3xl font-bold text-ink">{store.listingTitle}</h1>
|
||||
<p className="mt-1 text-sm text-ink-muted">매장 ID: {store.publicId}</p>
|
||||
</div>
|
||||
<span className={`rounded-full px-3 py-1 text-sm font-medium ${statusClass}`}>
|
||||
{statusLabel}
|
||||
return (
|
||||
<main className="mx-auto max-w-5xl pb-12 font-body">
|
||||
{/* ========================================================== *
|
||||
* PHOTO HERO (mobile first — 직방/다방 style)
|
||||
* ========================================================== */}
|
||||
<section className="relative">
|
||||
<div className="photo-hero">
|
||||
{heroPhoto ? (
|
||||
/* eslint-disable-next-line @next/next/no-img-element */
|
||||
<img
|
||||
src={heroPhoto.storageKey}
|
||||
alt={store.listingTitle}
|
||||
className="h-full w-full object-cover"
|
||||
/>
|
||||
) : (
|
||||
<div className="flex h-full w-full items-center justify-center text-sm text-ink-muted">
|
||||
사진 준비 중
|
||||
</div>
|
||||
)}
|
||||
<span
|
||||
className="absolute left-4 top-4 rounded-full px-3 py-1 text-xs font-semibold shadow-[0_6px_14px_-6px_rgba(15,29,23,0.25)]"
|
||||
style={{ background: status.bg, color: status.fg }}
|
||||
>
|
||||
{status.label}
|
||||
</span>
|
||||
<Link
|
||||
href="/stores"
|
||||
className="absolute right-4 top-4 inline-flex h-9 w-9 items-center justify-center rounded-full bg-white/90 text-ink shadow-[0_6px_14px_-6px_rgba(15,29,23,0.3)] backdrop-blur"
|
||||
aria-label="목록으로"
|
||||
>
|
||||
×
|
||||
</Link>
|
||||
{store.photos.length > 0 && (
|
||||
<span className="absolute bottom-4 right-4 inline-flex items-center gap-1 rounded-full bg-black/55 px-3 py-1 text-xs font-semibold text-white">
|
||||
📷 {store.photos.length}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* 기본 정보 */}
|
||||
<section className="mt-8">
|
||||
<h2 className="font-display text-xl font-bold text-ink mb-4">기본 정보</h2>
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<InfoItem label="지역" value={store.regionCluster?.nameKo ?? '-'} />
|
||||
<InfoItem label="업종" value={industryLabel || '-'} />
|
||||
<InfoItem label="주소" value={store.roadAddress} />
|
||||
<InfoItem label="등록일" value={store.createdAt.toLocaleDateString('ko-KR')} />
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 매매 정보 */}
|
||||
<section className="mt-8 rounded-2xl border border-warm-300/40 bg-warm-50/70 p-6">
|
||||
<h2 className="font-display text-xl font-bold text-ink mb-4">매매 정보</h2>
|
||||
|
||||
{/* 핵심 지표 (첫번째 캡쳐) */}
|
||||
<div className="grid grid-cols-2 gap-4 md:grid-cols-3">
|
||||
<BigInfoItem label="권리금" value={formatKRW(premium != null ? Number(premium) : null)} accent />
|
||||
<BigInfoItem label="창업비용" value={formatKRW(startup != null ? Number(startup) : null)} />
|
||||
<BigInfoItem label="월매출" value={formatKRW(sales != null ? Number(sales) : null)} />
|
||||
<BigInfoItem label="월수익" value={formatKRW(profit != null ? Number(profit) : null)} accent />
|
||||
<BigInfoItem
|
||||
label="월수익률"
|
||||
value={formatMargin(
|
||||
sales != null ? Number(sales) : undefined,
|
||||
profit != null ? Number(profit) : undefined,
|
||||
)}
|
||||
/>
|
||||
<BigInfoItem
|
||||
label="권리금 회수기간"
|
||||
value={formatPaybackMonths(
|
||||
premium != null ? Number(premium) : undefined,
|
||||
profit != null ? Number(profit) : undefined,
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* 매물설명 + 매장사진 (두번째 캡쳐) */}
|
||||
{(store.sale?.listingDescription || store.photos.length > 0) && (
|
||||
<div className="mt-8">
|
||||
<h3 className="font-display text-base font-bold text-ink mb-2">매물 설명</h3>
|
||||
{store.sale?.listingDescription ? (
|
||||
<p className="text-sm leading-relaxed text-ink whitespace-pre-line">
|
||||
{store.sale.listingDescription}
|
||||
</p>
|
||||
) : (
|
||||
<p className="text-sm text-ink-muted">설명이 등록되지 않았습니다</p>
|
||||
)}
|
||||
|
||||
{store.photos[0] && (
|
||||
<div className="mt-4 overflow-hidden rounded-xl bg-warm-100">
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<img
|
||||
src={store.photos[0].storageKey}
|
||||
alt="매장 대표 사진"
|
||||
className="aspect-[16/10] w-full object-cover"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* 매출/월수익 */}
|
||||
{(sales != null || profit != null) && (
|
||||
<div className="mt-8">
|
||||
<h3 className="font-display text-base font-bold text-ink mb-3">매출 / 월수익</h3>
|
||||
<div className="rounded-xl bg-white/70 p-4">
|
||||
<div className="grid grid-cols-2 gap-4 md:grid-cols-3">
|
||||
<InfoItem
|
||||
label="월매출"
|
||||
value={formatKRW(sales != null ? Number(sales) : null)}
|
||||
/>
|
||||
<InfoItem
|
||||
label="월수익"
|
||||
value={formatKRW(profit != null ? Number(profit) : null)}
|
||||
/>
|
||||
<InfoItem
|
||||
label="월수익률"
|
||||
value={formatMargin(
|
||||
sales != null ? Number(sales) : undefined,
|
||||
profit != null ? Number(profit) : undefined,
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
{/* Thumbnail strip (photos 2..9) */}
|
||||
{restPhotos.length > 0 && (
|
||||
<div className="mt-3 flex gap-2 overflow-x-auto px-4 pb-1 md:px-0">
|
||||
{restPhotos.map((photo) => (
|
||||
<div
|
||||
key={photo.id.toString()}
|
||||
className="h-20 w-28 shrink-0 overflow-hidden rounded-xl"
|
||||
style={{ background: '#EFF2F0' }}
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<img
|
||||
src={photo.storageKey}
|
||||
alt="매장 사진"
|
||||
className="h-full w-full object-cover"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</section>
|
||||
|
||||
{/* ========================================================== *
|
||||
* SUMMARY BAR (price, status, title)
|
||||
* ========================================================== */}
|
||||
<section className="px-5 pt-5 md:px-0">
|
||||
<p className="text-xs text-ink-muted">
|
||||
{store.regionCluster?.nameKo ?? '-'}
|
||||
{industryLabel ? ` · ${industryLabel}` : ''}
|
||||
</p>
|
||||
<h1 className="mt-1 font-display text-2xl font-extrabold tracking-tight text-ink md:text-3xl">
|
||||
{store.listingTitle}
|
||||
</h1>
|
||||
|
||||
<div className="mt-5 grid grid-cols-2 gap-3 md:grid-cols-4">
|
||||
<KpiTile label="권리금" value={formatKRW(premium != null ? Number(premium) : null)} accent />
|
||||
<KpiTile label="월수익" value={formatKRW(profit != null ? Number(profit) : null)} accent />
|
||||
<KpiTile label="월매출" value={formatKRW(sales != null ? Number(sales) : null)} />
|
||||
<KpiTile
|
||||
label="회수기간"
|
||||
value={formatPaybackMonths(
|
||||
premium != null ? Number(premium) : undefined,
|
||||
profit != null ? Number(profit) : undefined,
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* ========================================================== *
|
||||
* BODY
|
||||
* ========================================================== */}
|
||||
<section className="mt-6 grid gap-4 px-5 md:grid-cols-3 md:gap-6 md:px-0">
|
||||
<div className="md:col-span-2 space-y-6">
|
||||
{/* 매물 설명 */}
|
||||
{store.sale?.listingDescription && (
|
||||
<SectionCard title="매물 설명">
|
||||
<p className="text-sm leading-relaxed text-ink whitespace-pre-line">
|
||||
{store.sale.listingDescription}
|
||||
</p>
|
||||
</SectionCard>
|
||||
)}
|
||||
|
||||
{/* 입지특징 */}
|
||||
{/* 입지 특징 */}
|
||||
{store.sale?.locationHighlight && (
|
||||
<div className="mt-6">
|
||||
<h3 className="font-display text-base font-bold text-ink mb-2">입지 특징</h3>
|
||||
<p className="rounded-xl bg-white/70 p-4 text-sm text-ink whitespace-pre-line">
|
||||
<SectionCard title="입지 특징">
|
||||
<p className="text-sm leading-relaxed text-ink whitespace-pre-line">
|
||||
{store.sale.locationHighlight}
|
||||
</p>
|
||||
</div>
|
||||
</SectionCard>
|
||||
)}
|
||||
|
||||
{/* 매매사유 */}
|
||||
{/* 매매 사유 */}
|
||||
{store.sale?.saleReason && (
|
||||
<div className="mt-6">
|
||||
<h3 className="font-display text-base font-bold text-ink mb-2">매매 사유</h3>
|
||||
<p className="rounded-xl bg-white/70 p-4 text-sm text-ink whitespace-pre-line">
|
||||
<SectionCard title="매매 사유">
|
||||
<p className="text-sm leading-relaxed text-ink whitespace-pre-line">
|
||||
{store.sale.saleReason}
|
||||
</p>
|
||||
</div>
|
||||
</SectionCard>
|
||||
)}
|
||||
|
||||
{/* 현장사진 (대표 사진 제외한 나머지) */}
|
||||
{store.photos.length > 1 && (
|
||||
<div className="mt-8">
|
||||
<h3 className="font-display text-base font-bold text-ink mb-3">현장 사진</h3>
|
||||
<div className="grid grid-cols-3 gap-2 md:grid-cols-4">
|
||||
{store.photos.slice(1).map((photo) => (
|
||||
<div
|
||||
key={photo.id.toString()}
|
||||
className="aspect-square overflow-hidden rounded-lg bg-warm-100"
|
||||
>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
<img
|
||||
src={photo.storageKey}
|
||||
alt="현장 사진"
|
||||
className="h-full w-full object-cover"
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
{/* 시설 정보 */}
|
||||
<SectionCard title="시설 정보">
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<InfoItem
|
||||
label="면적"
|
||||
value={
|
||||
store.facility?.exclusiveAreaSqm != null
|
||||
? `${Number(store.facility.exclusiveAreaSqm).toLocaleString('ko-KR')}㎡`
|
||||
: '-'
|
||||
}
|
||||
/>
|
||||
<InfoItem
|
||||
label="층수"
|
||||
value={store.facility?.floorLevel != null ? `${store.facility.floorLevel}층` : '-'}
|
||||
/>
|
||||
</div>
|
||||
{store.facility?.kitchenEquipmentSummary && (
|
||||
<div className="mt-4">
|
||||
<p className="text-xs text-ink-muted">시설 설명</p>
|
||||
<p className="mt-1 text-sm text-ink">{store.facility.kitchenEquipmentSummary}</p>
|
||||
</div>
|
||||
)}
|
||||
</SectionCard>
|
||||
</div>
|
||||
|
||||
{/* Sticky sidebar */}
|
||||
<aside className="md:col-span-1 md:sticky md:top-24 md:self-start">
|
||||
<div
|
||||
className="rounded-2xl border bg-white p-5 shadow-[0_2px_14px_-10px_rgba(15,29,23,0.15)]"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
<p className="text-xs text-ink-muted">매장 ID</p>
|
||||
<p className="mt-0.5 font-mono text-xs text-ink">{store.publicId}</p>
|
||||
|
||||
<div className="mt-5 space-y-3">
|
||||
<RowInfo label="지역" value={store.regionCluster?.nameKo ?? '-'} />
|
||||
<RowInfo label="업종" value={industryLabel || '-'} />
|
||||
<RowInfo label="주소" value={store.roadAddress} />
|
||||
<RowInfo label="등록" value={store.createdAt.toLocaleDateString('ko-KR')} />
|
||||
</div>
|
||||
|
||||
{/* 임대 정보 */}
|
||||
<div className="mt-5 border-t pt-5" style={{ borderColor: '#EFF2F0' }}>
|
||||
<p className="font-display text-sm font-bold text-ink">임대 정보</p>
|
||||
<div className="mt-3 space-y-2">
|
||||
<RowInfo
|
||||
label="보증금"
|
||||
value={formatKRW(store.lease?.depositAmount != null ? Number(store.lease.depositAmount) : null)}
|
||||
/>
|
||||
<RowInfo
|
||||
label="월세"
|
||||
value={formatKRW(store.lease?.monthlyRentAmount != null ? Number(store.lease.monthlyRentAmount) : null)}
|
||||
/>
|
||||
<RowInfo
|
||||
label="잔여 계약"
|
||||
value={
|
||||
store.lease?.remainingLeaseMonths != null
|
||||
? `${store.lease.remainingLeaseMonths}개월`
|
||||
: '-'
|
||||
}
|
||||
/>
|
||||
<RowInfo label="창업비용" value={formatKRW(startup != null ? Number(startup) : null)} />
|
||||
<RowInfo
|
||||
label="월수익률"
|
||||
value={formatMargin(
|
||||
sales != null ? Number(sales) : undefined,
|
||||
profit != null ? Number(profit) : undefined,
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</section>
|
||||
|
||||
{/* 임대 정보 */}
|
||||
<section className="mt-8">
|
||||
<h2 className="font-display text-xl font-bold text-ink mb-4">임대 정보</h2>
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<InfoItem
|
||||
label="보증금"
|
||||
value={formatKRW(store.lease?.depositAmount != null ? Number(store.lease.depositAmount) : null)}
|
||||
/>
|
||||
<InfoItem
|
||||
label="월세"
|
||||
value={formatKRW(store.lease?.monthlyRentAmount != null ? Number(store.lease.monthlyRentAmount) : null)}
|
||||
/>
|
||||
<InfoItem
|
||||
label="임대 잔여 기간"
|
||||
value={
|
||||
store.lease?.remainingLeaseMonths != null
|
||||
? `${store.lease.remainingLeaseMonths}개월`
|
||||
: '-'
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 시설 정보 */}
|
||||
<section className="mt-8">
|
||||
<h2 className="font-display text-xl font-bold text-ink mb-4">시설 정보</h2>
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<InfoItem
|
||||
label="면적"
|
||||
value={
|
||||
store.facility?.exclusiveAreaSqm != null
|
||||
? `${Number(store.facility.exclusiveAreaSqm).toLocaleString('ko-KR')}㎡`
|
||||
: '-'
|
||||
}
|
||||
/>
|
||||
<InfoItem
|
||||
label="층수"
|
||||
value={store.facility?.floorLevel != null ? `${store.facility.floorLevel}층` : '-'}
|
||||
/>
|
||||
</div>
|
||||
{store.facility?.kitchenEquipmentSummary && (
|
||||
<div className="mt-4">
|
||||
<p className="text-sm text-ink-muted">시설 설명</p>
|
||||
<p className="mt-1 text-sm text-ink">{store.facility.kitchenEquipmentSummary}</p>
|
||||
{/* 액션 버튼 */}
|
||||
<div className="mt-6 space-y-3">
|
||||
{store.reviewStatus === 'DRAFT' && (
|
||||
<>
|
||||
<form action={handleSubmitForReview}>
|
||||
<input type="hidden" name="storePublicId" value={store.publicId} />
|
||||
<button
|
||||
type="submit"
|
||||
className="w-full rounded-full py-3 text-sm font-semibold text-white"
|
||||
style={{ background: 'linear-gradient(135deg,#03C75A,#02A149)' }}
|
||||
>
|
||||
검토 제출
|
||||
</button>
|
||||
</form>
|
||||
<form action={handleDeleteDraft}>
|
||||
<input type="hidden" name="storePublicId" value={store.publicId} />
|
||||
<button
|
||||
type="submit"
|
||||
className="w-full rounded-full border-2 border-red-300 py-3 text-sm text-red-600 hover:bg-red-50"
|
||||
>
|
||||
삭제
|
||||
</button>
|
||||
</form>
|
||||
</>
|
||||
)}
|
||||
{store.publicationStatus === 'PUBLISHED' && store.dealStatus !== 'CLOSED' && (
|
||||
<>
|
||||
<Link
|
||||
href={`/matching?storeId=${id}`}
|
||||
className="block w-full rounded-full py-3 text-center text-sm font-semibold text-white"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg,#03C75A,#02A149)',
|
||||
boxShadow: '0 10px 24px -10px rgba(3,199,90,0.55)',
|
||||
}}
|
||||
>
|
||||
매칭 요청 보내기
|
||||
</Link>
|
||||
<Link
|
||||
href={`/subsidies?storeId=${id}`}
|
||||
className="block w-full rounded-full border-2 py-3 text-center text-sm font-semibold text-ink"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
지원금 확인
|
||||
</Link>
|
||||
</>
|
||||
)}
|
||||
{store.dealStatus === 'CLOSED' && (
|
||||
<p className="rounded-xl border px-3 py-3 text-center text-sm text-ink-muted" style={{ borderColor: '#E4E8E6', background: '#F7FAF8' }}>
|
||||
이미 거래가 완료된 매장입니다
|
||||
</p>
|
||||
)}
|
||||
{store.reviewStatus === 'SUBMITTED' && (
|
||||
<p className="text-sm text-ink-muted">검토 대기 중입니다</p>
|
||||
)}
|
||||
{store.reviewStatus === 'REJECTED' && (
|
||||
<p className="text-sm text-red-600">반려되었습니다. 수정 후 다시 제출해주세요.</p>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</section>
|
||||
</div>
|
||||
|
||||
{/* 액션 버튼 */}
|
||||
<div className="mt-10 flex flex-wrap gap-3 border-t border-ink/5 pt-6">
|
||||
{store.reviewStatus === 'DRAFT' && (
|
||||
<>
|
||||
<form action={handleSubmitForReview}>
|
||||
<input type="hidden" name="storePublicId" value={store.publicId} />
|
||||
<button
|
||||
type="submit"
|
||||
className="rounded-full bg-ink px-6 py-3 text-sm font-medium text-warm-50 hover:bg-warm-800 transition-colors"
|
||||
>
|
||||
검토 제출
|
||||
</button>
|
||||
</form>
|
||||
<form action={handleDeleteDraft}>
|
||||
<input type="hidden" name="storePublicId" value={store.publicId} />
|
||||
<button
|
||||
type="submit"
|
||||
className="rounded-full border-2 border-red-300 px-6 py-3 text-sm text-red-600 hover:bg-red-50"
|
||||
>
|
||||
삭제
|
||||
</button>
|
||||
</form>
|
||||
</>
|
||||
)}
|
||||
{store.publicationStatus === 'PUBLISHED' && (
|
||||
<>
|
||||
<Link
|
||||
href={`/matching?storeId=${id}`}
|
||||
className="rounded-full bg-ink px-6 py-3 text-sm font-medium text-warm-50 hover:bg-warm-800 transition-colors"
|
||||
>
|
||||
매칭 요청 보내기
|
||||
</Link>
|
||||
<Link
|
||||
href={`/subsidies?storeId=${id}`}
|
||||
className="rounded-full border-2 border-ink/15 px-6 py-3 text-sm font-medium text-ink hover:border-ink/40 transition-colors"
|
||||
>
|
||||
지원금 확인
|
||||
</Link>
|
||||
</>
|
||||
)}
|
||||
{store.reviewStatus === 'SUBMITTED' && (
|
||||
<p className="text-sm text-ink-muted">검토 대기 중입니다</p>
|
||||
)}
|
||||
{store.reviewStatus === 'REJECTED' && (
|
||||
<p className="text-sm text-red-600">반려되었습니다. 수정 후 다시 제출해주세요.</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p className="mt-6 rounded-2xl bg-warm-100/60 px-5 py-4 text-xs leading-relaxed text-ink-muted">
|
||||
주의: 창업에이전트는 법률에 따라 부동산 중개 정보를 제공할 수 없으며, 권리금과 창업비용만 표시
|
||||
가능합니다. 매출·수익 정보는 매도인 제공 자료이며, 법적 근거로 사용될 수 없습니다. 권리금 계약은
|
||||
행정사가, 임대차 계약은 공인중개사가 작성합니다. 이 문구는 법률상 면책적 자료로 사용될 수
|
||||
있습니다.
|
||||
</p>
|
||||
<p className="mt-4 rounded-xl border px-4 py-3 text-[11px] leading-relaxed text-ink-muted" style={{ borderColor: '#EFF2F0', background: '#F7FAF8' }}>
|
||||
창업에이전트는 법률에 따라 부동산 중개 정보를 제공할 수 없으며, 권리금과 창업비용만
|
||||
표시 가능합니다. 매출·수익 정보는 매도인 제공 자료입니다.
|
||||
</p>
|
||||
</aside>
|
||||
</section>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
function InfoItem({ label, value }: { label: string; value: string }) {
|
||||
function KpiTile({ label, value, accent }: { label: string; value: string; accent?: boolean }) {
|
||||
return (
|
||||
<div>
|
||||
<p className="text-sm text-ink-muted">{label}</p>
|
||||
<p className="mt-0.5 text-sm font-medium text-ink">{value}</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function BigInfoItem({ label, value, accent }: { label: string; value: string; accent?: boolean }) {
|
||||
return (
|
||||
<div>
|
||||
<p className="text-sm text-ink-muted">{label}</p>
|
||||
<div
|
||||
className="rounded-2xl border bg-white p-4 shadow-[0_2px_10px_-8px_rgba(15,29,23,0.15)]"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
<p className="text-[11px] font-semibold tracking-wider uppercase text-ink-muted">{label}</p>
|
||||
<p
|
||||
className={`mt-1 font-display text-lg font-bold ${accent ? 'text-warm-700' : 'text-ink'}`}
|
||||
className={`mt-1 font-display text-lg font-extrabold tracking-tight ${accent ? '' : 'text-ink'}`}
|
||||
style={accent ? { color: '#02A149' } : undefined}
|
||||
>
|
||||
{value}
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function SectionCard({ title, children }: { title: string; children: React.ReactNode }) {
|
||||
return (
|
||||
<section
|
||||
className="rounded-2xl border bg-white p-5 shadow-[0_2px_10px_-8px_rgba(15,29,23,0.1)]"
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
<h3 className="font-display text-base font-bold text-ink">{title}</h3>
|
||||
<div className="mt-3">{children}</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
||||
function InfoItem({ label, value }: { label: string; value: string }) {
|
||||
return (
|
||||
<div>
|
||||
<p className="text-xs text-ink-muted">{label}</p>
|
||||
<p className="mt-0.5 text-sm font-medium text-ink">{value}</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function RowInfo({ label, value }: { label: string; value: string }) {
|
||||
return (
|
||||
<div className="flex items-center justify-between text-sm">
|
||||
<span className="text-xs text-ink-muted">{label}</span>
|
||||
<span className="font-medium text-ink">{value}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -19,6 +19,15 @@ function formatKRWShort(value: number | null | undefined): string {
|
||||
return `${v.toLocaleString('ko-KR')}원`;
|
||||
}
|
||||
|
||||
const STATUS_META: Record<string, { label: string; bg: string; fg: string }> = {
|
||||
OPEN: { label: '거래 가능', bg: '#03C75A', fg: '#ffffff' },
|
||||
MATCHING: { label: '매칭 중', bg: '#00C4A7', fg: '#ffffff' },
|
||||
RESERVED: { label: '예약', bg: '#84E1A1', fg: '#0F1D17' },
|
||||
CONTRACTED: { label: '계약 진행 중', bg: '#0AB070', fg: '#ffffff' },
|
||||
CLOSED: { label: '거래 완료', bg: '#7B8581', fg: '#ffffff' },
|
||||
CANCELLED: { label: '취소', bg: '#E4E8E6', fg: '#0F1D17' },
|
||||
};
|
||||
|
||||
export default async function StoresPage({
|
||||
searchParams,
|
||||
}: {
|
||||
@@ -68,18 +77,25 @@ export default async function StoresPage({
|
||||
|
||||
return (
|
||||
<main className="mx-auto max-w-7xl px-6 py-10 font-body">
|
||||
<div className="animate-fade-up flex items-center justify-between">
|
||||
<div className="animate-fade-up flex flex-wrap items-center justify-between gap-4">
|
||||
<div>
|
||||
<h1 className="font-display text-3xl font-bold text-ink">매장 검색</h1>
|
||||
<p className="font-mono text-[11px] tracking-[0.25em] uppercase text-ink-muted">
|
||||
<span className="text-grad-primary">◆</span> Store · Marketplace
|
||||
</p>
|
||||
<h1 className="mt-2 font-display text-3xl font-black tracking-tight text-ink">매장 검색</h1>
|
||||
<p className="mt-1 text-sm text-ink-muted">
|
||||
공개된 매장을 검색하고 매칭 요청을 보내보세요
|
||||
공개된 매물 {stores.length.toLocaleString('ko-KR')}건 · 운영팀 검수를 통과한 매장만 노출됩니다
|
||||
</p>
|
||||
</div>
|
||||
<Link
|
||||
href="/stores/new"
|
||||
className="rounded-full bg-ink px-6 py-3 text-sm font-medium text-warm-50 hover:bg-warm-800 transition-colors"
|
||||
className="rounded-full px-6 py-3 text-sm font-semibold text-white transition-transform hover:-translate-y-0.5"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg,#03C75A 0%,#02A149 55%,#018f40 100%)',
|
||||
boxShadow: '0 10px 24px -10px rgba(3,199,90,0.5)',
|
||||
}}
|
||||
>
|
||||
매장 등록
|
||||
매장 등록 →
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
@@ -90,12 +106,13 @@ export default async function StoresPage({
|
||||
<div className="mt-6 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 animate-fade-up">
|
||||
{stores.length === 0 ? (
|
||||
<div className="col-span-full py-16 text-center text-sm text-ink-muted">
|
||||
등록된 매장이 없습니다
|
||||
조건에 맞는 매장이 없습니다
|
||||
</div>
|
||||
) : (
|
||||
stores.map((store) => {
|
||||
const premium = store.sale?.premiumAmount ?? store.lease?.premiumAmount ?? null;
|
||||
const profit = store.sale?.monthlyProfitAmount ?? null;
|
||||
const sales = store.sale?.monthlySalesAmount ?? null;
|
||||
const industryLabel = [
|
||||
store.industryLeaf?.parent?.nameKo,
|
||||
store.industryLeaf?.nameKo,
|
||||
@@ -103,21 +120,23 @@ export default async function StoresPage({
|
||||
.filter(Boolean)
|
||||
.join('/');
|
||||
const photoSrc = store.photos[0]?.storageKey ?? null;
|
||||
const meta = STATUS_META[store.dealStatus] ?? { label: store.dealStatus, bg: '#E4E8E6', fg: '#0F1D17' };
|
||||
const isClosed = store.dealStatus === 'CLOSED';
|
||||
|
||||
return (
|
||||
<Link
|
||||
key={store.publicId}
|
||||
href={`/stores/${store.publicId}`}
|
||||
className="block overflow-hidden rounded-2xl border border-ink/5 bg-white/70 backdrop-blur-sm card-lift"
|
||||
className={`block overflow-hidden rounded-2xl border bg-white card-lift ${isClosed ? 'opacity-80' : ''}`}
|
||||
style={{ borderColor: '#E4E8E6' }}
|
||||
>
|
||||
{/* 사진 영역 */}
|
||||
<div className="relative aspect-[4/3] w-full bg-warm-100">
|
||||
<div className="relative aspect-[4/3] w-full" style={{ background: '#EFF2F0' }}>
|
||||
{photoSrc ? (
|
||||
// eslint-disable-next-line @next/next/no-img-element
|
||||
/* eslint-disable-next-line @next/next/no-img-element */
|
||||
<img
|
||||
src={photoSrc}
|
||||
alt={store.listingTitle}
|
||||
className="h-full w-full object-cover"
|
||||
className={`h-full w-full object-cover ${isClosed ? 'grayscale' : ''}`}
|
||||
/>
|
||||
) : (
|
||||
<div className="flex h-full w-full items-center justify-center text-xs text-ink-muted">
|
||||
@@ -125,23 +144,13 @@ export default async function StoresPage({
|
||||
</div>
|
||||
)}
|
||||
<span
|
||||
className={`absolute right-3 top-3 rounded-full px-2 py-0.5 text-xs font-medium ${
|
||||
store.dealStatus === 'OPEN'
|
||||
? 'bg-sage-500/90 text-white'
|
||||
: store.dealStatus === 'MATCHING'
|
||||
? 'bg-warm-600/90 text-white'
|
||||
: 'bg-ink/70 text-white'
|
||||
}`}
|
||||
className="absolute right-3 top-3 rounded-full px-2.5 py-1 text-[11px] font-semibold shadow-[0_4px_10px_-4px_rgba(15,29,23,0.25)]"
|
||||
style={{ background: meta.bg, color: meta.fg }}
|
||||
>
|
||||
{store.dealStatus === 'OPEN'
|
||||
? '거래 가능'
|
||||
: store.dealStatus === 'MATCHING'
|
||||
? '매칭 중'
|
||||
: store.dealStatus}
|
||||
{meta.label}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{/* 정보 영역 */}
|
||||
<div className="p-4">
|
||||
<p className="text-xs text-ink-muted">
|
||||
{store.regionCluster?.nameKo ?? '-'}
|
||||
@@ -150,10 +159,10 @@ export default async function StoresPage({
|
||||
<h3 className="mt-1 line-clamp-1 font-display font-bold text-ink">
|
||||
{store.listingTitle}
|
||||
</h3>
|
||||
<div className="mt-3 space-y-1">
|
||||
<div className="mt-3 space-y-1.5">
|
||||
<div className="flex items-baseline justify-between">
|
||||
<span className="text-xs text-ink-muted">권리금</span>
|
||||
<span className="font-display font-bold text-warm-700">
|
||||
<span className="font-display font-bold" style={{ color: '#02A149' }}>
|
||||
{formatKRWShort(premium != null ? Number(premium) : null)}
|
||||
</span>
|
||||
</div>
|
||||
@@ -163,6 +172,12 @@ export default async function StoresPage({
|
||||
{formatKRWShort(profit != null ? Number(profit) : null)}
|
||||
</span>
|
||||
</div>
|
||||
<div className="flex items-baseline justify-between">
|
||||
<span className="text-xs text-ink-muted">월매출</span>
|
||||
<span className="text-sm text-ink-light">
|
||||
{formatKRWShort(sales != null ? Number(sales) : null)}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Link>
|
||||
@@ -171,7 +186,7 @@ export default async function StoresPage({
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="mt-8 text-center text-sm text-ink-muted">
|
||||
<div className="mt-8 text-center text-xs text-ink-muted">
|
||||
매출·수익 정보는 매도인이 제공한 자료이며 법적 근거로 사용될 수 없습니다
|
||||
</div>
|
||||
</main>
|
||||
|
||||
@@ -15,6 +15,7 @@ const STATUS_OPTIONS = [
|
||||
{ value: 'OPEN', label: '거래 가능' },
|
||||
{ value: 'MATCHING', label: '매칭 중' },
|
||||
{ value: 'CONTRACTED', label: '계약 진행 중' },
|
||||
{ value: 'CLOSED', label: '거래 완료' },
|
||||
];
|
||||
|
||||
export function StoreFilters() {
|
||||
@@ -46,15 +47,21 @@ export function StoreFilters() {
|
||||
[router],
|
||||
);
|
||||
|
||||
const selectCls =
|
||||
'rounded-xl border px-4 py-3 text-sm text-ink bg-white focus:outline-none focus:border-[#03C75A] focus:ring-2 focus:ring-[#03C75A]/20';
|
||||
const borderStyle = { borderColor: '#E4E8E6' } as const;
|
||||
|
||||
return (
|
||||
<form
|
||||
onSubmit={handleSubmit}
|
||||
className="mt-6 flex flex-wrap gap-3 rounded-2xl border border-ink/5 bg-white/70 backdrop-blur-sm p-5"
|
||||
className="mt-6 flex flex-wrap gap-3 rounded-2xl border bg-white p-5 shadow-[0_2px_14px_-10px_rgba(15,29,23,0.15)]"
|
||||
style={borderStyle}
|
||||
>
|
||||
<select
|
||||
name="region"
|
||||
defaultValue={searchParams.get('region') ?? ''}
|
||||
className="rounded-xl border border-ink/10 bg-white/70 px-4 py-3 text-sm text-ink focus:border-warm-500 focus:ring-2 focus:ring-warm-500/20 focus:outline-none"
|
||||
className={selectCls}
|
||||
style={borderStyle}
|
||||
>
|
||||
{REGION_OPTIONS.map((opt) => (
|
||||
<option key={opt.value} value={opt.value}>
|
||||
@@ -66,7 +73,8 @@ export function StoreFilters() {
|
||||
name="industryMajor"
|
||||
value={majorCode}
|
||||
onChange={(e) => setMajorCode(e.target.value)}
|
||||
className="rounded-xl border border-ink/10 bg-white/70 px-4 py-3 text-sm text-ink focus:border-warm-500 focus:ring-2 focus:ring-warm-500/20 focus:outline-none"
|
||||
className={selectCls}
|
||||
style={borderStyle}
|
||||
>
|
||||
<option value="">전체 대분류</option>
|
||||
{INDUSTRY_MAJORS.map((m) => (
|
||||
@@ -79,7 +87,8 @@ export function StoreFilters() {
|
||||
name="industry"
|
||||
defaultValue={searchParams.get('industry') ?? ''}
|
||||
disabled={!majorCode}
|
||||
className="rounded-xl border border-ink/10 bg-white/70 px-4 py-3 text-sm text-ink focus:border-warm-500 focus:ring-2 focus:ring-warm-500/20 focus:outline-none disabled:opacity-50"
|
||||
className={`${selectCls} disabled:opacity-50`}
|
||||
style={borderStyle}
|
||||
>
|
||||
<option value="">전체 소분류</option>
|
||||
{subOptions.map((c) => (
|
||||
@@ -91,7 +100,8 @@ export function StoreFilters() {
|
||||
<select
|
||||
name="status"
|
||||
defaultValue={searchParams.get('status') ?? ''}
|
||||
className="rounded-xl border border-ink/10 bg-white/70 px-4 py-3 text-sm text-ink focus:border-warm-500 focus:ring-2 focus:ring-warm-500/20 focus:outline-none"
|
||||
className={selectCls}
|
||||
style={borderStyle}
|
||||
>
|
||||
{STATUS_OPTIONS.map((opt) => (
|
||||
<option key={opt.value} value={opt.value}>
|
||||
@@ -101,7 +111,11 @@ export function StoreFilters() {
|
||||
</select>
|
||||
<button
|
||||
type="submit"
|
||||
className="rounded-full bg-ink px-6 py-3 text-sm font-medium text-warm-50 hover:bg-warm-800 transition-colors"
|
||||
className="rounded-full px-6 py-3 text-sm font-semibold text-white transition-transform hover:-translate-y-0.5"
|
||||
style={{
|
||||
background: 'linear-gradient(135deg,#03C75A 0%,#02A149 60%,#018f40 100%)',
|
||||
boxShadow: '0 10px 24px -10px rgba(3,199,90,0.55)',
|
||||
}}
|
||||
>
|
||||
검색
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user