This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linktree page (/links?source=aero-flyer)
- Loading branch information
1 parent
2c43aad
commit bd66564
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React from "react"; | ||
import { Container, Row, Col } from "react-grid-system"; | ||
import { HeadContent } from "../components/HeadContent"; | ||
import Layout from "../components/Layout"; | ||
|
||
const LINKTREE = "https://linktr.ee/aeroteamehv?utm_source=qr_code"; | ||
|
||
export function Head() { | ||
return ( | ||
<> | ||
<HeadContent title="Link Tree" /> | ||
<meta http-equiv="refresh" content={`3; url=${LINKTREE}`} /> | ||
</> | ||
); | ||
} | ||
|
||
export default function NotFoundPage() { | ||
return ( | ||
<Layout> | ||
<Container> | ||
<Row> | ||
<Col> | ||
<h1> | ||
Visit our LinkTree | ||
</h1> | ||
<p>If you are not automatically redirected in 5 seconds, manually navigate <a className="nav" href={LINKTREE}>here</a></p> | ||
Check failure on line 26 in src/pages/links.tsx
|
||
</Col> | ||
</Row> | ||
</Container> | ||
</Layout> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters