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