From a2157ae53ae224b48eeabe22a66c6149bdbcd6fd Mon Sep 17 00:00:00 2001 From: Ethan Weisberg Date: Sat, 24 Aug 2024 17:18:43 -0400 Subject: [PATCH] more changes and bumps next --- .gitignore | 4 +- components/actionButton.jsx | 7 +- components/actionLink.jsx | 4 +- components/footer.jsx | 10 +- components/homePageProject.jsx | 6 +- components/involveSection.jsx | 4 +- components/navbar/Logo.jsx | 2 +- components/navbar/NavLink.jsx | 2 +- package.json | 6 +- yarn.lock | 257 ++++++++++++++++----------------- 10 files changed, 155 insertions(+), 147 deletions(-) diff --git a/.gitignore b/.gitignore index 16567a3..2ce74cf 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,6 @@ npm-debug.log* yarn-debug.log* yarn-error.log* package-lock.json -.python* \ No newline at end of file +.python* +# Local Netlify folder +.netlify diff --git a/components/actionButton.jsx b/components/actionButton.jsx index 2e43146..44b4989 100644 --- a/components/actionButton.jsx +++ b/components/actionButton.jsx @@ -34,7 +34,10 @@ function Anchor({ link, white, className, children, ...props }) { a:hover { box-shadow: rgba(0, 0, 0, 0.12) 3px 5px 20px; - transition: border 0.2s, background 0.2s, color 0.2s ease-out; + transition: + border 0.2s, + background 0.2s, + color 0.2s ease-out; } `} @@ -43,7 +46,7 @@ function Anchor({ link, white, className, children, ...props }) { const ActionButton = (props) => { return props?.link.startsWith('/') ? ( - + ) : ( diff --git a/components/actionLink.jsx b/components/actionLink.jsx index 2c60d2a..b1c200e 100644 --- a/components/actionLink.jsx +++ b/components/actionLink.jsx @@ -20,7 +20,9 @@ const getAnchor = (link, text, style) => ( const ActionLink = ({ link, text, style }) => link.startsWith('/') ? ( - {getAnchor(link, text, style)} + + {getAnchor(link, text, style)} + ) : ( getAnchor(link, text, style) ); diff --git a/components/footer.jsx b/components/footer.jsx index 72f9714..12899df 100644 --- a/components/footer.jsx +++ b/components/footer.jsx @@ -25,12 +25,12 @@ function Footer() {

About the org