diff --git a/package.json b/package.json index a6e269d..18a7233 100644 --- a/package.json +++ b/package.json @@ -42,5 +42,8 @@ }, "engines": { "node": ">=18.17.0" + }, + "dependencies": { + "react-icons": "^5.3.0" } } diff --git a/packages/nextjs/app/not-found.tsx b/packages/nextjs/app/not-found.tsx new file mode 100644 index 0000000..ea0cd42 --- /dev/null +++ b/packages/nextjs/app/not-found.tsx @@ -0,0 +1,22 @@ +import React from "react"; +import Image from "next/image"; +import Link from "next/link"; + +const NotFound = () => { + return ( + + + + + Go back to the{" "} + + {" "} + Home Page{" "} + {" "} + + + + ); +}; + +export default NotFound; diff --git a/packages/nextjs/public/404.svg b/packages/nextjs/public/404.svg new file mode 100644 index 0000000..7db62f9 --- /dev/null +++ b/packages/nextjs/public/404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index f67f3bf..7e5bd12 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12019,6 +12019,15 @@ __metadata: languageName: node linkType: hard +"react-icons@npm:^5.3.0": + version: 5.3.0 + resolution: "react-icons@npm:5.3.0" + peerDependencies: + react: "*" + checksum: 3aa5f50e05aafc6d31e0d995fe0d98560069aa88717b24ce8aaa082a7e7b20ca95e1e19d847ed6e52d658a5a30e15826af20d7554bf993a743edd55586db62e3 + languageName: node + linkType: hard + "react-is@npm:^16.13.1": version: 16.13.1 resolution: "react-is@npm:16.13.1" @@ -12680,6 +12689,7 @@ __metadata: dependencies: husky: ^8.0.1 lint-staged: ^13.0.3 + react-icons: ^5.3.0 languageName: unknown linkType: soft
+ Go back to the{" "} + + {" "} + Home Page{" "} + {" "} +