From 3c4b5bb801f19710fa75da51ad17cdc4fa6388a8 Mon Sep 17 00:00:00 2001 From: Zeke Abshire Date: Sun, 5 Mar 2023 22:46:52 -0600 Subject: [PATCH] Adding assets --- package-lock.json | 15 +++++++++++++++ package.json | 1 + public/apple.svg | 4 ++++ public/facebook.svg | 11 +++++++++++ public/github.svg | 4 ++++ public/google.svg | 7 +++++++ public/twitter.svg | 4 ++++ tailwind.config.cjs | 4 +++- 8 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 public/apple.svg create mode 100644 public/facebook.svg create mode 100644 public/github.svg create mode 100644 public/google.svg create mode 100644 public/twitter.svg diff --git a/package-lock.json b/package-lock.json index 1a0ae45..bbd7353 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,6 +23,7 @@ "react": "18.2.0", "react-aria": "^3.23.0", "react-dom": "18.2.0", + "react-icons": "^4.8.0", "superjson": "1.9.1", "zod": "^3.20.2" }, @@ -5420,6 +5421,14 @@ "react": "^18.2.0" } }, + "node_modules/react-icons": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", + "integrity": "sha512-N6+kOLcihDiAnj5Czu637waJqSnwlMNROzVZMhfX68V/9bu9qHaMIJC4UdozWoOk57gahFCNHwVvWzm0MTzRjg==", + "peerDependencies": { + "react": "*" + } + }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", @@ -10013,6 +10022,12 @@ "scheduler": "^0.23.0" } }, + "react-icons": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", + "integrity": "sha512-N6+kOLcihDiAnj5Czu637waJqSnwlMNROzVZMhfX68V/9bu9qHaMIJC4UdozWoOk57gahFCNHwVvWzm0MTzRjg==", + "requires": {} + }, "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", diff --git a/package.json b/package.json index 7313569..368a4d2 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "react": "18.2.0", "react-aria": "^3.23.0", "react-dom": "18.2.0", + "react-icons": "^4.8.0", "superjson": "1.9.1", "zod": "^3.20.2" }, diff --git a/public/apple.svg b/public/apple.svg new file mode 100644 index 0000000..c3c14f6 --- /dev/null +++ b/public/apple.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/facebook.svg b/public/facebook.svg new file mode 100644 index 0000000..2ac61c8 --- /dev/null +++ b/public/facebook.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/github.svg b/public/github.svg new file mode 100644 index 0000000..ba40b93 --- /dev/null +++ b/public/github.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/google.svg b/public/google.svg new file mode 100644 index 0000000..e823597 --- /dev/null +++ b/public/google.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/twitter.svg b/public/twitter.svg new file mode 100644 index 0000000..7b71ca2 --- /dev/null +++ b/public/twitter.svg @@ -0,0 +1,4 @@ + + + + diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 9bb7743..53baf44 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -93,10 +93,12 @@ module.exports = { "radial-gradient(circle farthest-side at center, #deb887 0%, #00000000 100%)", }, boxShadow: { + "solid-raised": "14px 28px 0px rgba(0, 0, 0, 0.2)", solid: "12px 24px 0px rgba(0, 0, 0, 0.2)", "solid-lowered": "10px 20px 0px rgba(0, 0, 0, 0.2)", + "solid-medium": "8px 16px 0px rgba(0, 0, 0, 0.2)", + "solid-medium-lowered": "6px 12px 0px rgba(0, 0, 0, 0.2)", "solid-lowest": "2px 4px 0px rgba(0, 0, 0, 0.2)", - "solid-raised": "14px 28px 0px rgba(0, 0, 0, 0.2)", }, dropShadow: { blur: "0 0 5px #303030",