From 80be958960b16281dffbd3c26f9817053323259b Mon Sep 17 00:00:00 2001 From: Claeb101 Date: Sun, 5 Mar 2023 06:45:49 -0500 Subject: [PATCH] footer --- app/src/components/Background.tsx | 25 +++++++++++++------------ app/src/components/OutlineButton.tsx | 2 +- app/src/components/footer.tsx | 12 ++++++++++-- app/src/components/header.tsx | 14 +++++++------- app/src/components/layout.tsx | 2 +- 5 files changed, 32 insertions(+), 23 deletions(-) diff --git a/app/src/components/Background.tsx b/app/src/components/Background.tsx index 2b9b49f..f8a71a7 100644 --- a/app/src/components/Background.tsx +++ b/app/src/components/Background.tsx @@ -7,29 +7,30 @@ const Background = ({className}) => { "value": 70, "density": { "enable": true, - "area": 450 + "area": 450 } }, "color": { - "value": "#ffffff" + "value": "#52abff", }, "size": { "value": 30, "random": true }, "shape": { - "type": "image", - "image": { - "src": "/images/snowflake.svg", - } + "type": "circle", + "stroke": { + "width": 4, + "color": "#52abff", + "opacity": 0.2 + }, }, "opacity": { - "value": 0.75, - "random": true, + "random": true }, "move": { "enable": true, - "speed": {min: 1, max: 2}, + "speed": { min: 1, max: 2 }, "direction": "bottom", "straight": false, "out_mode": "out", @@ -85,10 +86,10 @@ const Background = ({className}) => { return (
- {/* */} + />
); } diff --git a/app/src/components/OutlineButton.tsx b/app/src/components/OutlineButton.tsx index 341d901..bf9b0fe 100644 --- a/app/src/components/OutlineButton.tsx +++ b/app/src/components/OutlineButton.tsx @@ -1,7 +1,7 @@ import Link from "next/link"; const OutlineButton = ({name="", className="", link="", onClick=()=>{}}) => { - const btn = + const btn = if(link.length > 0){ return diff --git a/app/src/components/footer.tsx b/app/src/components/footer.tsx index 21203a3..b88a104 100644 --- a/app/src/components/footer.tsx +++ b/app/src/components/footer.tsx @@ -5,8 +5,16 @@ import SiteLink from './SiteLink'; export const Footer = () => { return ( -