From 38d148d6d78b87adcdf748da86094bd55141cf97 Mon Sep 17 00:00:00 2001 From: Krsiak Daniel Date: Sat, 7 Dec 2024 15:19:21 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=F0=9F=91=B7=20update=20-=20vcard=20an?= =?UTF-8?q?d=20img=20folders?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/not-found.tsx | 2 +- app/page.tsx | 2 + components/aboutMe/Photo.tsx | 2 +- components/header/Logo.tsx | 2 +- components/homepage/ContactVcard.tsx | 15 +- components/homepage/MeInMovember.tsx | 15 + components/layout/ErrorPageLayout.tsx | 2 +- public/icons/{ => png}/icon-128x128.png | Bin public/icons/{ => png}/icon-144x144.png | Bin public/icons/{ => png}/icon-16x16.png | Bin public/icons/{ => png}/icon-192x192.png | Bin public/icons/{ => png}/icon-196x196.png | Bin public/icons/{ => png}/icon-24x24.png | Bin public/icons/{ => png}/icon-256x256.png | Bin public/icons/{ => png}/icon-32x32.png | Bin public/icons/{ => png}/icon-384x384.png | Bin public/icons/{ => png}/icon-48x48.png | Bin public/icons/{ => png}/icon-512x512.png | Bin public/icons/{ => png}/icon-64x64.png | Bin public/icons/{ => png}/icon-72x72.png | Bin public/icons/{ => png}/icon-96x96.png | Bin .../krsiak-daniel-website-preview.png | Bin public/images/{ => png}/og-preview.png | Bin public/images/png/qr-code-vcard.png | Bin 0 -> 9533 bytes public/images/svg/qr-code-vcard.svg | 3684 +++++++++ public/images/svg/vcard-qr-code.svg | 7299 ----------------- .../images/{illustrations => webp}/404.webp | Bin .../images/{illustrations => webp}/error.webp | Bin public/images/{ => webp}/krsiak-daniel.webp | Bin public/{ => images/webp}/logo.webp | Bin public/manifest.webmanifest | 16 +- 31 files changed, 3717 insertions(+), 7322 deletions(-) create mode 100644 components/homepage/MeInMovember.tsx rename public/icons/{ => png}/icon-128x128.png (100%) rename public/icons/{ => png}/icon-144x144.png (100%) rename public/icons/{ => png}/icon-16x16.png (100%) rename public/icons/{ => png}/icon-192x192.png (100%) rename public/icons/{ => png}/icon-196x196.png (100%) rename public/icons/{ => png}/icon-24x24.png (100%) rename public/icons/{ => png}/icon-256x256.png (100%) rename public/icons/{ => png}/icon-32x32.png (100%) rename public/icons/{ => png}/icon-384x384.png (100%) rename public/icons/{ => png}/icon-48x48.png (100%) rename public/icons/{ => png}/icon-512x512.png (100%) rename public/icons/{ => png}/icon-64x64.png (100%) rename public/icons/{ => png}/icon-72x72.png (100%) rename public/icons/{ => png}/icon-96x96.png (100%) rename public/images/{ => png}/krsiak-daniel-website-preview.png (100%) rename public/images/{ => png}/og-preview.png (100%) create mode 100644 public/images/png/qr-code-vcard.png create mode 100644 public/images/svg/qr-code-vcard.svg delete mode 100644 public/images/svg/vcard-qr-code.svg rename public/images/{illustrations => webp}/404.webp (100%) rename public/images/{illustrations => webp}/error.webp (100%) rename public/images/{ => webp}/krsiak-daniel.webp (100%) rename public/{ => images/webp}/logo.webp (100%) diff --git a/app/not-found.tsx b/app/not-found.tsx index 45ed38ce..68f33b4e 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,5 +1,5 @@ import PageContainer from '@/components/layout/PageContainer' -import img404 from '@/public/images/illustrations/404.webp' +import img404 from '@/public/images/webp/404.webp' import { ID } from '@/utils/constants' import Image from 'next/image' import Link from 'next/link' diff --git a/app/page.tsx b/app/page.tsx index dc5fe43e..c7debbd9 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,6 +1,7 @@ import NextPageNavigation from '@/components/NextPageNavigation' import ContactVcard from '@/components/homepage/ContactVcard' import Hero from '@/components/homepage/Hero' +import MeInMovember from '@/components/homepage/MeInMovember' import Skills from '@/components/homepage/Skills' import SkillsMain from '@/components/homepage/SkillsMain' import WhatIDoMindset from '@/components/homepage/WhatIDoMindset' @@ -39,6 +40,7 @@ const Page = () => { + {/* TODO: refactor for all pages into constants, urls, text, test IDs */} { return (
- -
- -
-
- -
- contact QR code -
+ +
+ contact QR code
) diff --git a/components/homepage/MeInMovember.tsx b/components/homepage/MeInMovember.tsx new file mode 100644 index 00000000..472dc3ca --- /dev/null +++ b/components/homepage/MeInMovember.tsx @@ -0,0 +1,15 @@ +import Photo from '@/components/aboutMe/Photo' +import DividerWithText from '@/components/shared/DividerWithText' + +const MeInMovember = () => { + return ( +
+ +
+ +
+
+ ) +} + +export default MeInMovember diff --git a/components/layout/ErrorPageLayout.tsx b/components/layout/ErrorPageLayout.tsx index a3ea9946..654e4a1c 100644 --- a/components/layout/ErrorPageLayout.tsx +++ b/components/layout/ErrorPageLayout.tsx @@ -1,5 +1,5 @@ import PageContainer from '@/components/layout/PageContainer' -import imgError from '@/public/images/illustrations/error.webp' +import imgError from '@/public/images/webp/error.webp' import { ErrorProps } from '@/utils/sharedComponentProps' import Image from 'next/image' import { useEffect } from 'react' diff --git a/public/icons/icon-128x128.png b/public/icons/png/icon-128x128.png similarity index 100% rename from public/icons/icon-128x128.png rename to public/icons/png/icon-128x128.png diff --git a/public/icons/icon-144x144.png b/public/icons/png/icon-144x144.png similarity index 100% rename from public/icons/icon-144x144.png rename to public/icons/png/icon-144x144.png diff --git a/public/icons/icon-16x16.png b/public/icons/png/icon-16x16.png similarity index 100% rename from public/icons/icon-16x16.png rename to public/icons/png/icon-16x16.png diff --git a/public/icons/icon-192x192.png b/public/icons/png/icon-192x192.png similarity index 100% rename from public/icons/icon-192x192.png rename to public/icons/png/icon-192x192.png diff --git a/public/icons/icon-196x196.png b/public/icons/png/icon-196x196.png similarity index 100% rename from public/icons/icon-196x196.png rename to public/icons/png/icon-196x196.png diff --git a/public/icons/icon-24x24.png b/public/icons/png/icon-24x24.png similarity index 100% rename from public/icons/icon-24x24.png rename to public/icons/png/icon-24x24.png diff --git a/public/icons/icon-256x256.png b/public/icons/png/icon-256x256.png similarity index 100% rename from public/icons/icon-256x256.png rename to public/icons/png/icon-256x256.png diff --git a/public/icons/icon-32x32.png b/public/icons/png/icon-32x32.png similarity index 100% rename from public/icons/icon-32x32.png rename to public/icons/png/icon-32x32.png diff --git a/public/icons/icon-384x384.png b/public/icons/png/icon-384x384.png similarity index 100% rename from public/icons/icon-384x384.png rename to public/icons/png/icon-384x384.png diff --git a/public/icons/icon-48x48.png b/public/icons/png/icon-48x48.png similarity index 100% rename from public/icons/icon-48x48.png rename to public/icons/png/icon-48x48.png diff --git a/public/icons/icon-512x512.png b/public/icons/png/icon-512x512.png similarity index 100% rename from public/icons/icon-512x512.png rename to public/icons/png/icon-512x512.png diff --git a/public/icons/icon-64x64.png b/public/icons/png/icon-64x64.png similarity index 100% rename from public/icons/icon-64x64.png rename to public/icons/png/icon-64x64.png diff --git a/public/icons/icon-72x72.png b/public/icons/png/icon-72x72.png similarity index 100% rename from public/icons/icon-72x72.png rename to public/icons/png/icon-72x72.png diff --git a/public/icons/icon-96x96.png b/public/icons/png/icon-96x96.png similarity index 100% rename from public/icons/icon-96x96.png rename to public/icons/png/icon-96x96.png diff --git a/public/images/krsiak-daniel-website-preview.png b/public/images/png/krsiak-daniel-website-preview.png similarity index 100% rename from public/images/krsiak-daniel-website-preview.png rename to public/images/png/krsiak-daniel-website-preview.png diff --git a/public/images/og-preview.png b/public/images/png/og-preview.png similarity index 100% rename from public/images/og-preview.png rename to public/images/png/og-preview.png diff --git a/public/images/png/qr-code-vcard.png b/public/images/png/qr-code-vcard.png new file mode 100644 index 0000000000000000000000000000000000000000..f284b9e926fdc23ae30c7fe565eb91f872fffbee GIT binary patch literal 9533 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/svg/vcard-qr-code.svg b/public/images/svg/vcard-qr-code.svg deleted file mode 100644 index 188e5ee7..00000000 --- a/public/images/svg/vcard-qr-code.svg +++ /dev/null @@ -1,7299 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/public/images/illustrations/404.webp b/public/images/webp/404.webp similarity index 100% rename from public/images/illustrations/404.webp rename to public/images/webp/404.webp diff --git a/public/images/illustrations/error.webp b/public/images/webp/error.webp similarity index 100% rename from public/images/illustrations/error.webp rename to public/images/webp/error.webp diff --git a/public/images/krsiak-daniel.webp b/public/images/webp/krsiak-daniel.webp similarity index 100% rename from public/images/krsiak-daniel.webp rename to public/images/webp/krsiak-daniel.webp diff --git a/public/logo.webp b/public/images/webp/logo.webp similarity index 100% rename from public/logo.webp rename to public/images/webp/logo.webp diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest index 65a24b41..cc69c8cd 100644 --- a/public/manifest.webmanifest +++ b/public/manifest.webmanifest @@ -6,13 +6,13 @@ "theme_color": "#7C3AED", "display": "minimal-ui", "icons": [ - { "src": "icons/icon-48x48.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "48x48", "type": "image/png" }, - { "src": "icons/icon-72x72.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "72x72", "type": "image/png" }, - { "src": "icons/icon-96x96.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "96x96", "type": "image/png" }, - { "src": "icons/icon-144x144.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "144x144", "type": "image/png" }, - { "src": "icons/icon-192x192.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "192x192", "type": "image/png" }, - { "src": "icons/icon-256x256.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "256x256", "type": "image/png" }, - { "src": "icons/icon-384x384.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "384x384", "type": "image/png" }, - { "src": "icons/icon-512x512.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "512x512", "type": "image/png" } + { "src": "icons/png/icon-48x48.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "48x48", "type": "image/png" }, + { "src": "icons/png/icon-72x72.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "72x72", "type": "image/png" }, + { "src": "icons/png/icon-96x96.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "96x96", "type": "image/png" }, + { "src": "icons/png/icon-144x144.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "144x144", "type": "image/png" }, + { "src": "icons/png/icon-192x192.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "192x192", "type": "image/png" }, + { "src": "icons/png/icon-256x256.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "256x256", "type": "image/png" }, + { "src": "icons/png/icon-384x384.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "384x384", "type": "image/png" }, + { "src": "icons/png/icon-512x512.png?v=cdb9513bc0dc9de50a720a528be5ddcd", "sizes": "512x512", "type": "image/png" } ] }