From 9b49995df17a8ac5487e15183c0ff4f6988e792b Mon Sep 17 00:00:00 2001 From: SeungWoo Date: Mon, 27 May 2024 20:26:11 +0900 Subject: [PATCH] ADD :: My Application & Tip List Page --- src/app/profile/application/page.tsx | 34 ++++++++++++++++++++++++++++ src/app/profile/page.tsx | 14 ++++++++---- src/app/profile/tip/page.tsx | 34 ++++++++++++++++++++++++++++ 3 files changed, 78 insertions(+), 4 deletions(-) create mode 100644 src/app/profile/application/page.tsx create mode 100644 src/app/profile/tip/page.tsx diff --git a/src/app/profile/application/page.tsx b/src/app/profile/application/page.tsx new file mode 100644 index 0000000..8123973 --- /dev/null +++ b/src/app/profile/application/page.tsx @@ -0,0 +1,34 @@ +'use client' + +import { Arrow } from '@/assets' +import { ApplicationBox } from '@/components' +import { useRouter } from 'next/navigation' +import { applicationData } from '../page' + +export default function MyApplicationPage() { + const router = useRouter() + + return ( +
+
+
+ +
+

공유한 지원서 자료

+

8개 내 지원서 자료

+
+
+
+ {applicationData.map((value, index) => ( + + ))} +
+
+
+ ) +} diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx index 569c8c0..690cfd1 100644 --- a/src/app/profile/page.tsx +++ b/src/app/profile/page.tsx @@ -4,7 +4,7 @@ import { ApplicationPreviewType } from '@/types' import Image from 'next/image' import Link from 'next/link' -const applicationData: ApplicationPreviewType[] = [ +export const applicationData: ApplicationPreviewType[] = [ { post_id: 0, post_title: '개인적으로 완벽한 포트폴리오', @@ -39,7 +39,7 @@ const applicationData: ApplicationPreviewType[] = [ }, ] -const tipData = [ +export const tipData = [ { title: '지원서 작성 팁 3가지', content: @@ -123,7 +123,10 @@ export default function ProfilePage() {
공유한 지원서 자료
- +

더보기

공유한 지원서 팁
- +

더보기

+
+
+ +
+

공유한 지원서 팁

+

8개 내 지원서 팁

+
+
+
+ {tipData.map((value, index) => ( + + ))} +
+
+ + ) +}