@@ -90,7 +99,9 @@ export default async function ContractsPage() {
생성일: {new Date(contract.createdAt).toLocaleDateString('ko-KR')}
-
+
{statusInfo.label}
diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx
index 40fdc0c..52974ff 100644
--- a/apps/web/src/app/layout.tsx
+++ b/apps/web/src/app/layout.tsx
@@ -6,8 +6,8 @@ import { AuthButtons } from './auth-buttons';
import './globals.css';
export const metadata: Metadata = {
- title: 'Re:Link',
- description: 'Re:Link - 폐업 · 양도 · 창업을 잇는 중개 플랫폼',
+ title: 'Startover',
+ description: 'Startover - 폐업 · 양도 · 창업을 잇는 중개 플랫폼',
};
const OPERATOR_ROLES = [
@@ -26,7 +26,7 @@ async function Navigation() {
diff --git a/apps/web/src/app/stores/[id]/page.tsx b/apps/web/src/app/stores/[id]/page.tsx
index 8e6a2c7..1484f8e 100644
--- a/apps/web/src/app/stores/[id]/page.tsx
+++ b/apps/web/src/app/stores/[id]/page.tsx
@@ -1,6 +1,6 @@
import Link from 'next/link';
import { notFound } from 'next/navigation';
-import { createPrismaClient } from '@relink/database';
+import { createPrismaClient } from '@startover/database';
export const dynamic = 'force-dynamic';
diff --git a/apps/web/src/app/stores/new/page.tsx b/apps/web/src/app/stores/new/page.tsx
index db3aa70..dcc0725 100644
--- a/apps/web/src/app/stores/new/page.tsx
+++ b/apps/web/src/app/stores/new/page.tsx
@@ -1,6 +1,6 @@
import Link from 'next/link';
import { redirect } from 'next/navigation';
-import { createPrismaClient } from '@relink/database';
+import { createPrismaClient } from '@startover/database';
export const dynamic = 'force-dynamic';
diff --git a/apps/web/src/app/stores/page.tsx b/apps/web/src/app/stores/page.tsx
index 986f93d..442bd6a 100644
--- a/apps/web/src/app/stores/page.tsx
+++ b/apps/web/src/app/stores/page.tsx
@@ -1,5 +1,5 @@
import Link from 'next/link';
-import { createPrismaClient } from '@relink/database';
+import { createPrismaClient } from '@startover/database';
export const dynamic = 'force-dynamic';
diff --git a/apps/web/src/app/subsidies/page.tsx b/apps/web/src/app/subsidies/page.tsx
index 2cf09e5..2be12ec 100644
--- a/apps/web/src/app/subsidies/page.tsx
+++ b/apps/web/src/app/subsidies/page.tsx
@@ -1,5 +1,5 @@
import Link from 'next/link';
-import { createPrismaClient } from '@relink/database';
+import { createPrismaClient } from '@startover/database';
export const dynamic = 'force-dynamic';
@@ -40,7 +40,7 @@ export default async function SubsidiesPage() {
가이드형 지원금 대행 서비스
- Re:Link은 지원금 신청 보조 파트너로서, 체크리스트·서류 업로드·진행 상태·운영자 피드백을
+ Startover은 지원금 신청 보조 파트너로서, 체크리스트·서류 업로드·진행 상태·운영자 피드백을
제공합니다.
@@ -51,7 +51,10 @@ export default async function SubsidiesPage() {
데이터가 없습니다
) : (
cases.map((c) => {
- const statusInfo = STATUS_MAP[c.status] ?? { label: c.status, color: 'bg-gray-100 text-gray-700' };
+ const statusInfo = STATUS_MAP[c.status] ?? {
+ label: c.status,
+ color: 'bg-gray-100 text-gray-700',
+ };
const total = c.checklistItems.length;
const checked = c.checklistItems.filter((item) => item.status === 'CHECKED').length;
return (
@@ -63,7 +66,9 @@ export default async function SubsidiesPage() {
신청일: {new Date(c.createdAt).toLocaleDateString('ko-KR')}