diff --git a/app/apply/org/page.tsx b/app/apply/org/page.tsx new file mode 100644 index 0000000..6bb0fd5 --- /dev/null +++ b/app/apply/org/page.tsx @@ -0,0 +1,20 @@ +import Link from "next/link"; +import PublicLayout from "@/components/layout/PublicLayout"; + +export default function OrgApplyPage() { + return ( + +
+

+ Organization Application +

+

Coming soon.

+ + + Back to Apply + +
+
+ ); +} + diff --git a/app/apply/page.tsx b/app/apply/page.tsx new file mode 100644 index 0000000..556108a --- /dev/null +++ b/app/apply/page.tsx @@ -0,0 +1,31 @@ +import Link from "next/link"; +import PublicLayout from "@/components/layout/PublicLayout"; + +export default function ApplyPage() { + return ( + +
+

Apply

+ +

+ Choose the application you want to start. +

+ + {/* links container */} +
+ + Startup Application + + + + Org Application + + + + Team Application + +
+
+
+ ); +} diff --git a/app/apply/startup/page.tsx b/app/apply/startup/page.tsx new file mode 100644 index 0000000..c83cded --- /dev/null +++ b/app/apply/startup/page.tsx @@ -0,0 +1,17 @@ +import Link from "next/link"; +import PublicLayout from "@/components/layout/PublicLayout"; + +export default function StartupApplyPage() { + return ( + +
+

Startup Application

+

Coming soon.

+ + + Back to Apply + +
+
+ ); +} diff --git a/app/apply/team/page.tsx b/app/apply/team/page.tsx new file mode 100644 index 0000000..f0396cd --- /dev/null +++ b/app/apply/team/page.tsx @@ -0,0 +1,17 @@ +import Link from "next/link"; +import PublicLayout from "@/components/layout/PublicLayout"; + +export default function TeamApplyPage() { + return ( + +
+

Team Application

+

Coming soon.

+ + + Back to Apply + +
+
+ ); +}