diff --git a/app/public/android-chrome-192x192.png b/app/public/android-chrome-192x192.png index 1754195..3a4cdf2 100644 Binary files a/app/public/android-chrome-192x192.png and b/app/public/android-chrome-192x192.png differ diff --git a/app/public/android-chrome-512x512.png b/app/public/android-chrome-512x512.png index f80f5dc..9bd2b27 100644 Binary files a/app/public/android-chrome-512x512.png and b/app/public/android-chrome-512x512.png differ diff --git a/app/public/apple-touch-icon.png b/app/public/apple-touch-icon.png index 535ce07..7830cc6 100644 Binary files a/app/public/apple-touch-icon.png and b/app/public/apple-touch-icon.png differ diff --git a/app/public/browserconfig.xml b/app/public/browserconfig.xml index b3930d0..a47e5a5 100644 --- a/app/public/browserconfig.xml +++ b/app/public/browserconfig.xml @@ -3,7 +3,7 @@ - #da532c + #2d89ef diff --git a/app/public/favicon-16x16.png b/app/public/favicon-16x16.png index e829a55..d5a903a 100644 Binary files a/app/public/favicon-16x16.png and b/app/public/favicon-16x16.png differ diff --git a/app/public/favicon-32x32.png b/app/public/favicon-32x32.png index c610e31..fdc7367 100644 Binary files a/app/public/favicon-32x32.png and b/app/public/favicon-32x32.png differ diff --git a/app/public/favicon.ico b/app/public/favicon.ico index e831bc8..fa11b54 100644 Binary files a/app/public/favicon.ico and b/app/public/favicon.ico differ diff --git a/app/public/icons/popout.svg b/app/public/icons/popout.svg new file mode 100644 index 0000000..8bbb9d7 --- /dev/null +++ b/app/public/icons/popout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/public/images/logo.png b/app/public/images/logo.png index 2243cfb..9bd2b27 100644 Binary files a/app/public/images/logo.png and b/app/public/images/logo.png differ diff --git a/app/public/images/logo.svg b/app/public/images/logo.svg new file mode 100644 index 0000000..ebe0c41 --- /dev/null +++ b/app/public/images/logo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/app/public/mstile-144x144.png b/app/public/mstile-144x144.png new file mode 100644 index 0000000..51affd8 Binary files /dev/null and b/app/public/mstile-144x144.png differ diff --git a/app/public/mstile-150x150.png b/app/public/mstile-150x150.png index 56b0107..ca069ad 100644 Binary files a/app/public/mstile-150x150.png and b/app/public/mstile-150x150.png differ diff --git a/app/public/mstile-310x150.png b/app/public/mstile-310x150.png new file mode 100644 index 0000000..1b6a083 Binary files /dev/null and b/app/public/mstile-310x150.png differ diff --git a/app/public/mstile-310x310.png b/app/public/mstile-310x310.png new file mode 100644 index 0000000..5734d0b Binary files /dev/null and b/app/public/mstile-310x310.png differ diff --git a/app/public/mstile-70x70.png b/app/public/mstile-70x70.png new file mode 100644 index 0000000..1122782 Binary files /dev/null and b/app/public/mstile-70x70.png differ diff --git a/app/public/safari-pinned-tab.svg b/app/public/safari-pinned-tab.svg index 2bc2c4c..a499462 100644 --- a/app/public/safari-pinned-tab.svg +++ b/app/public/safari-pinned-tab.svg @@ -2,577 +2,64 @@ Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/app/src/components/Background.tsx b/app/src/components/Background.tsx index 2b9b49f..8344937 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/InputField.tsx b/app/src/components/InputField.tsx index 86d6907..6e52dd3 100644 --- a/app/src/components/InputField.tsx +++ b/app/src/components/InputField.tsx @@ -4,8 +4,8 @@ export const InputField = ({ id, name, value, onChange, className='' }) => { return (
- - + +
); } \ No newline at end of file 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..40441e5 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 ( -