Skip to content

Commit 2cd5cb3

Browse files
committed
fix(mobile): prevent menu expansion from taking document space and improve join page layout
1 parent 4b96afb commit 2cd5cb3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/join-us/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const metadata: Metadata = buildPageMetadata("/join-us", { description })
99

1010
export default function JoinUs() {
1111
return (
12-
<section className="flex min-h-[85vh] flex-col items-center justify-center gap-4 text-center">
12+
<section className="flex min-h-[85vh] flex-col items-center justify-center gap-4 text-center m-auto w-fit">
1313
<h1 className="max-w-4xl text-2xl font-bold tracking-tight md:text-4xl">
1414
Join The Team at ALPHA University Chapter at the University of Hong Kong, an initiative with great
1515
potential.

src/components/sections/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export function Header() {
199199
animate={{ opacity: 1, height: "auto" }}
200200
exit={{ opacity: 0, height: 0 }}
201201
transition={{ duration: 0.3, ease: "easeInOut" }}
202-
className="overflow-hidden"
202+
className="overflow-hidden absolute left-0 right-0"
203203
>
204204
<div className="border-b border-t bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/80">
205205
<div className="container px-4 lg:px-6 py-4">

src/lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const siteConfig = {
4343
github: "https://github.com/ALPHA-HKU",
4444
linkedin: "https://www.linkedin.com/company/alpha-hku/",
4545
donate: donateLink,
46-
parentOrg: "https://alphaeducation.org",
46+
parentOrg: "https://www.alphaeducation.org",
4747
seoImage: "/ALPHA-HKU.png",
4848
seoImageWidth: 882,
4949
seoImageHeight: 802,

0 commit comments

Comments
 (0)