|
1 | 1 | import { Metadata } from "next"; |
2 | | -import { ComingSoon, comingSoonText } from "@/components/sections/coming-soon"; |
3 | 2 | import { buildPageMetadata } from "@/lib/config"; |
| 3 | +import { AnimatedFillButton } from "@/components/primitives/animated-fill-button"; |
| 4 | +import { siteConfig } from "@/lib/config"; |
4 | 5 |
|
5 | | -const description = comingSoonText; |
| 6 | +const description = |
| 7 | + "Join The Team at ALPHA University Chapter at HKU, an initiative with great potential."; |
6 | 8 | export const metadata: Metadata = buildPageMetadata("/join-us", { description }); |
7 | 9 |
|
8 | 10 | export default function JoinUs() { |
9 | 11 | return ( |
10 | | - <> |
11 | | - <ComingSoon /> |
12 | | - </> |
| 12 | + <section className="flex min-h-[60vh] flex-col items-center justify-center gap-6 text-center"> |
| 13 | + <h1 className="max-w-4xl text-2xl font-bold tracking-tight md:text-4xl"> |
| 14 | + Join The Team at ALPHA University Chapter at HKU, an initiative with great potential. |
| 15 | + </h1> |
| 16 | + <p className="text-base text-muted-foreground md:text-lg"> |
| 17 | + We provide opportunities for: |
| 18 | + </p> |
| 19 | + <div className="flex flex-wrap items-center justify-center gap-4 pt-2"> |
| 20 | + {[ |
| 21 | + { label: "Full Membership", href: "" }, |
| 22 | + { label: "Research Fellowship", href: "" }, |
| 23 | + { label: "Officers", href: "" }, |
| 24 | + ].map((item) => ( |
| 25 | + <AnimatedFillButton |
| 26 | + href={item.href} |
| 27 | + key={item.label} |
| 28 | + > |
| 29 | + {item.label} |
| 30 | + </AnimatedFillButton> |
| 31 | + ))} |
| 32 | + </div> |
| 33 | + <p className="text-sm text-muted-foreground md:text-base pt-3"> |
| 34 | + For more information, contact us at{" "} |
| 35 | + <a |
| 36 | + href={`mailto:${siteConfig.email}`} |
| 37 | + className="text-primary hover:underline" |
| 38 | + > |
| 39 | + {siteConfig.email} |
| 40 | + </a> |
| 41 | + . |
| 42 | + </p> |
| 43 | + </section> |
13 | 44 | ); |
14 | 45 | } |
0 commit comments