From af7ed4f2f4bf39e34c3e7d74cf47b89670f92f8f Mon Sep 17 00:00:00 2001 From: minsik Date: Thu, 1 Aug 2024 13:37:16 +0900 Subject: [PATCH] =?UTF-8?q?-=20=EB=A9=94=EB=89=B4=20=EB=9D=BC=EC=9A=B0?= =?UTF-8?q?=ED=84=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/community/archive/page.jsx | 15 +++++++++++++++ src/app/community/faq/page.jsx | 15 +++++++++++++++ src/app/community/notice/page.jsx | 16 ++++++++++++++++ src/app/management/plan/page.jsx | 15 +++++++++++++++ src/app/management/stuff/page.jsx | 15 +++++++++++++++ src/app/master/company/page.jsx | 15 +++++++++++++++ src/app/master/price/page.jsx | 16 ++++++++++++++++ src/components/community/Archive.jsx | 7 +++++++ src/components/community/Faq.jsx | 7 +++++++ src/components/community/Notice.jsx | 7 +++++++ src/components/management/Plan.jsx | 7 +++++++ src/components/management/Stuff.jsx | 7 +++++++ src/components/master/Company.jsx | 7 +++++++ src/components/master/Price.jsx | 7 +++++++ 14 files changed, 156 insertions(+) create mode 100644 src/app/community/archive/page.jsx create mode 100644 src/app/community/faq/page.jsx create mode 100644 src/app/community/notice/page.jsx create mode 100644 src/app/management/plan/page.jsx create mode 100644 src/app/management/stuff/page.jsx create mode 100644 src/app/master/company/page.jsx create mode 100644 src/app/master/price/page.jsx create mode 100644 src/components/community/Archive.jsx create mode 100644 src/components/community/Faq.jsx create mode 100644 src/components/community/Notice.jsx create mode 100644 src/components/management/Plan.jsx create mode 100644 src/components/management/Stuff.jsx create mode 100644 src/components/master/Company.jsx create mode 100644 src/components/master/Price.jsx diff --git a/src/app/community/archive/page.jsx b/src/app/community/archive/page.jsx new file mode 100644 index 00000000..331abf50 --- /dev/null +++ b/src/app/community/archive/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Archive from '@/components/community/Archive' + +export default function IntroPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/community/faq/page.jsx b/src/app/community/faq/page.jsx new file mode 100644 index 00000000..8f1e5f25 --- /dev/null +++ b/src/app/community/faq/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Faq from '@/components/community/Faq' + +export default function IntroPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/community/notice/page.jsx b/src/app/community/notice/page.jsx new file mode 100644 index 00000000..558a0018 --- /dev/null +++ b/src/app/community/notice/page.jsx @@ -0,0 +1,16 @@ + +'use client' + +import Hero from '@/components/Hero' +import Notice from '@/components/community/Notice' + +export default function IntroPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/management/plan/page.jsx b/src/app/management/plan/page.jsx new file mode 100644 index 00000000..45afb7fa --- /dev/null +++ b/src/app/management/plan/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Plan from '@/components/management/Plan' + +export default function ManagementPlanPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/management/stuff/page.jsx b/src/app/management/stuff/page.jsx new file mode 100644 index 00000000..a548be92 --- /dev/null +++ b/src/app/management/stuff/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Stuff from '@/components/management/Stuff' + +export default function ManagementStuffPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/master/company/page.jsx b/src/app/master/company/page.jsx new file mode 100644 index 00000000..729af24d --- /dev/null +++ b/src/app/master/company/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Company from '@/components/master/Company' + +export default function IntroPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/master/price/page.jsx b/src/app/master/price/page.jsx new file mode 100644 index 00000000..f367d026 --- /dev/null +++ b/src/app/master/price/page.jsx @@ -0,0 +1,16 @@ + +'use client' + +import Hero from '@/components/Hero' +import Price from '@/components/master/Price' + +export default function IntroPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/components/community/Archive.jsx b/src/components/community/Archive.jsx new file mode 100644 index 00000000..dcfc737f --- /dev/null +++ b/src/components/community/Archive.jsx @@ -0,0 +1,7 @@ +export default function Archive() { + return ( + <> +

Community Archive

+ + ) +} diff --git a/src/components/community/Faq.jsx b/src/components/community/Faq.jsx new file mode 100644 index 00000000..722741b3 --- /dev/null +++ b/src/components/community/Faq.jsx @@ -0,0 +1,7 @@ +export default function Faq() { + return ( + <> +

Community FAQ

+ + ) +} diff --git a/src/components/community/Notice.jsx b/src/components/community/Notice.jsx new file mode 100644 index 00000000..2ab67c8e --- /dev/null +++ b/src/components/community/Notice.jsx @@ -0,0 +1,7 @@ +export default function Notice() { + return ( + <> +

Community Notice

+ + ) +} diff --git a/src/components/management/Plan.jsx b/src/components/management/Plan.jsx new file mode 100644 index 00000000..0a627cc5 --- /dev/null +++ b/src/components/management/Plan.jsx @@ -0,0 +1,7 @@ +export default function Plan() { + return ( + <> +

Management Plan

+ + ) +} diff --git a/src/components/management/Stuff.jsx b/src/components/management/Stuff.jsx new file mode 100644 index 00000000..da7b834d --- /dev/null +++ b/src/components/management/Stuff.jsx @@ -0,0 +1,7 @@ +export default function Stuff() { + return ( + <> +

Management Stuff

+ + ) +} diff --git a/src/components/master/Company.jsx b/src/components/master/Company.jsx new file mode 100644 index 00000000..0955e94c --- /dev/null +++ b/src/components/master/Company.jsx @@ -0,0 +1,7 @@ +export default function Company() { + return ( + <> +

Master Company

+ + ) +} diff --git a/src/components/master/Price.jsx b/src/components/master/Price.jsx new file mode 100644 index 00000000..9947f760 --- /dev/null +++ b/src/components/master/Price.jsx @@ -0,0 +1,7 @@ +export default function Price() { + return ( + <> +

Master Price

+ + ) +}