Skip to content

Commit 92bd6c0

Browse files
committed
Fixed mobile navigation.
1 parent 535ef1b commit 92bd6c0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

apps/web/src/app/about/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default async function AboutPage() {
2424
<div className="flex flex-col gap-4">
2525
<h5 className="text-h5 text-foreground/50">About</h5>
2626
<h1 className="text-[10vw] sm:text-[clamp(3.8rem,9.5vw,4.8rem)] md:text-[clamp(4.8rem,10vw,6.7rem)] lg:text-[clamp(6.7rem,10.5vw,8.625rem)] xl:text-[8.625rem] leading-none text-foreground">
27-
<span className="text-primary">We care</span> {" "}
27+
<span className="text-primary">We care</span>{" "}
2828
about product passpo<span className="tracking-wide">rt</span>s
2929
</h1>
3030
</div>

apps/web/src/components/header.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,20 +162,20 @@ export function Header() {
162162
Designer
163163
</Link>
164164
<Link
165-
href="/#automation"
166-
aria-label="Go to automation section"
165+
href="/#compliance"
166+
aria-label="Go to compliance section"
167167
className="text-2xl font-medium text-foreground hover:text-foreground/70 transition-colors duration-150"
168168
onClick={() => setIsMobileMenuOpen(false)}
169169
>
170-
Automation
170+
Compliance
171171
</Link>
172172
<Link
173-
href="/#compliance"
174-
aria-label="Go to compliance section"
173+
href="/about/"
174+
aria-label="Go to about page"
175175
className="text-2xl font-medium text-foreground hover:text-foreground/70 transition-colors duration-150"
176176
onClick={() => setIsMobileMenuOpen(false)}
177177
>
178-
Compliance
178+
About
179179
</Link>
180180
<Link
181181
href="/updates/"

0 commit comments

Comments
 (0)