diff --git a/src/app/community/archive/page.jsx b/src/app/community/archive/page.jsx new file mode 100644 index 00000000..06971385 --- /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 CommunityArchivePage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/community/faq/page.jsx b/src/app/community/faq/page.jsx new file mode 100644 index 00000000..63992da8 --- /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 CommunityFaqPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/community/notice/page.jsx b/src/app/community/notice/page.jsx new file mode 100644 index 00000000..5c5d0559 --- /dev/null +++ b/src/app/community/notice/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Notice from '@/components/community/Notice' + +export default function CommunityNoticePage() { + 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..18be29e2 --- /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 MasterCompanyPage() { + return ( + <> + +
+ +
+ + ) +} diff --git a/src/app/master/price/page.jsx b/src/app/master/price/page.jsx new file mode 100644 index 00000000..e60210fb --- /dev/null +++ b/src/app/master/price/page.jsx @@ -0,0 +1,15 @@ +'use client' + +import Hero from '@/components/Hero' +import Price from '@/components/master/Price' + +export default function MasterPricePage() { + 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

+ + ) +}