From ed07dd600f7481511d2d53ff584979b5c03f6035 Mon Sep 17 00:00:00 2001 From: Meliora Ho Date: Sun, 4 Feb 2024 18:34:03 +0000 Subject: [PATCH] added hero-icons as dependencies --- compass/package-lock.json | 9 ++++++ compass/package.json | 1 + compass/pages/index.tsx | 61 +++++++++++++++++++++------------------ 3 files changed, 43 insertions(+), 28 deletions(-) diff --git a/compass/package-lock.json b/compass/package-lock.json index cd8e0a2..aa9dab8 100644 --- a/compass/package-lock.json +++ b/compass/package-lock.json @@ -8,6 +8,7 @@ "name": "compass", "version": "0.1.0", "dependencies": { + "@heroicons/react": "^2.1.1", "next": "13.5.6", "react": "^18", "react-dom": "^18" @@ -113,6 +114,14 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@heroicons/react": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.1.1.tgz", + "integrity": "sha512-JyyN9Lo66kirbCMuMMRPtJxtKJoIsXKS569ebHGGRKbl8s4CtUfLnyKJxteA+vIKySocO4s1SkTkGS4xtG/yEA==", + "peerDependencies": { + "react": ">= 16" + } + }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.13", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", diff --git a/compass/package.json b/compass/package.json index af34787..a748bbe 100644 --- a/compass/package.json +++ b/compass/package.json @@ -9,6 +9,7 @@ "lint": "next lint" }, "dependencies": { + "@heroicons/react": "^2.1.1", "next": "13.5.6", "react": "^18", "react-dom": "^18" diff --git a/compass/pages/index.tsx b/compass/pages/index.tsx index 09d12e9..3eed8e4 100644 --- a/compass/pages/index.tsx +++ b/compass/pages/index.tsx @@ -9,34 +9,39 @@ import Page from '@/components/auth/Page'; const Home: NextPage = () => { return ( - -
-
- - -
-
- - -
-
- - Forgot password? - - - -
-
-

- © 2024 Compass Center -

-
+ <> + + + + +
+
+ + +
+
+ + +
+
+ + Forgot password? + + + +
+
+

+ © 2024 Compass Center +

+
+ ); };