WIP: add Adobe page tracking

This commit is contained in:
Arvid Norlin
2024-02-09 15:36:04 +01:00
parent cbc0899be5
commit b40ef7d5c8
4 changed files with 113 additions and 8 deletions

View File

@@ -1,8 +1,13 @@
import Tracking from "./Tracking"
export default function NotFound() {
return (
<main>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
</main>
<>
<main>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
</main>
<Tracking />
</>
)
}