diff --git a/src/app/error.tsx b/src/app/error.tsx new file mode 100644 index 0000000..b836c4c --- /dev/null +++ b/src/app/error.tsx @@ -0,0 +1,5 @@ +"use client"; + +export default function Page() { + return
Error
; +} diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..9cf69a1 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,3 @@ +export default function Page() { + return
404 - Not Found
; +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 3a14839..d053eaf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import { artSupplies } from "./data"; export default function Home() { return ( -
+
{artSupplies.map((collection) => (

@@ -29,6 +29,6 @@ export default function Home() {

))} -
+ ); }