Skip to content

Commit f178eec

Browse files
committed
feat(about-us): add content to our story page
1 parent a6b3051 commit f178eec

File tree

2 files changed

+30
-6
lines changed

2 files changed

+30
-6
lines changed
Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
11
import { Metadata } from "next";
2-
import { ComingSoon, comingSoonText } from "@/components/sections/coming-soon";
3-
import { buildPageMetadata } from "@/lib/config";
2+
import { buildPageMetadata, siteConfig } from "@/lib/config";
43

5-
const description = comingSoonText;
4+
const description =
5+
"The first and only global student initiative based in Hong Kong for constructive peace and humanity. First international student chapter of ALPHA Education.";
66
export const metadata: Metadata = buildPageMetadata("/about-us/our-story", { description });
77

88
export default function OurStory() {
9-
return <ComingSoon />;
9+
return (
10+
<section className="py-16">
11+
<h1 className="text-4xl font-bold tracking-tight text-center mb-6">Our Story</h1>
12+
<div className="mx-auto max-w-3xl text-lg text-muted-foreground">
13+
<p>
14+
Carrying{" "}
15+
<a
16+
href={siteConfig.parentOrg}
17+
target="_blank"
18+
rel="noopener"
19+
className="text-primary hover:text-primary/80 underline transition-colors"
20+
>
21+
ALPHA Education
22+
</a>
23+
's mandate, we are an independent student organization, the largest student initiative in HKU,
24+
formed by an installation size of 30 students to spread the message of peace and humanity.
25+
<br />
26+
<br />
27+
This is an initiative with great potential leading to a Global Institute of Peace and Humanity based
28+
in HK by 2027.
29+
</p>
30+
</div>
31+
</section>
32+
);
1033
}

src/components/sections/who-we-are.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import { Button } from "@/components/ui/button";
22
import Link from "next/link";
3+
import { siteConfig } from "@/lib/config";
34

45
export function WhoWeAre() {
56
return (
6-
<section className="container mx-auto px-4 text-center">
7+
<section className="mx-auto text-center">
78
<h2 className="text-3xl font-bold mb-4">Who We Are</h2>
89
<p className="max-w-3xl mx-auto text-muted-foreground mb-6">
910
Carrying{" "}
1011
<a
11-
href="https://www.alphaeducation.org"
12+
href={siteConfig.parentOrg}
1213
target="_blank"
1314
rel="noopener"
1415
className="text-primary hover:text-primary/80 underline transition-colors"

0 commit comments

Comments
 (0)