Skip to content

Commit

Permalink
Merge pull request #1899 from 6TELOIV/patch-1
Browse files Browse the repository at this point in the history
fix: `/banned` Nav and Foooter links go to correct domain
  • Loading branch information
steven-tey authored Jan 18, 2025
2 parents 4d82dab + 351cc9b commit ac7321d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/app/banned/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const metadata = constructMetadata({
export default async function BannedPage() {
return (
<main className="flex min-h-screen flex-col justify-between">
<NavMobile />
<Nav />
<NavMobile staticDomain="dub.sh" />
<Nav staticDomain="dub.sh" />
<div className="z-10 mx-2 my-10 flex max-w-md flex-col items-center space-y-5 px-2.5 text-center sm:mx-auto sm:max-w-lg sm:px-0 lg:mb-16">
<div className="mx-auto flex h-20 w-20 items-center justify-center rounded-full border border-gray-300 bg-white/30">
<ShieldBan className="size-6 text-gray-500" />
Expand All @@ -30,7 +30,7 @@ export default async function BannedPage() {
Create Your Free Branded Link
</a>
</div>
<Footer />
<Footer staticDomain="dub.sh" />
<Background />
</main>
);
Expand Down

0 comments on commit ac7321d

Please sign in to comment.