From be2af4108127e58ce821a01de5d93f12c55b29c1 Mon Sep 17 00:00:00 2001 From: Manuel Brandstetter Date: Tue, 16 Jan 2024 11:39:08 +0100 Subject: [PATCH 1/3] Several changes --- public/assets/mobile/dots--dark.svg | 20 +++++++ public/assets/mobile/mobile_dots.svg | 68 +++++++++--------------- src/components/Footer/Footer.astro | 22 ++++---- src/components/Footer/Footer.scss | 18 ++++--- src/components/Navbar/Navbar.astro | 6 +-- src/components/Navbar/Navbar.scss | 3 ++ src/components/ProgressButton.scss | 1 + src/components/VideoPlayer.tsx | 6 +-- src/layouts/LegalLayout.astro | 2 +- src/views/AboutUs/AboutUs.astro | 2 +- src/views/AboutUs/AboutUs.scss | 2 +- src/views/Choices/Choices.astro | 2 +- src/views/Choices/Choices.scss | 16 ++++-- src/views/Features/Features.astro | 2 +- src/views/Feedback/FeedbackCarousel.scss | 4 +- src/views/Hero/Hero.astro | 10 ++-- src/views/Hero/Hero.scss | 4 +- src/views/Mobile/Mobile.astro | 2 +- src/views/Mobile/Mobile.scss | 5 +- tsconfig.json | 3 +- 20 files changed, 111 insertions(+), 87 deletions(-) create mode 100644 public/assets/mobile/dots--dark.svg diff --git a/public/assets/mobile/dots--dark.svg b/public/assets/mobile/dots--dark.svg new file mode 100644 index 0000000..53689c4 --- /dev/null +++ b/public/assets/mobile/dots--dark.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/mobile/mobile_dots.svg b/public/assets/mobile/mobile_dots.svg index 0c19044..a7b8b2c 100644 --- a/public/assets/mobile/mobile_dots.svg +++ b/public/assets/mobile/mobile_dots.svg @@ -1,44 +1,26 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/Footer/Footer.astro b/src/components/Footer/Footer.astro index 688c5c6..6b3c98b 100644 --- a/src/components/Footer/Footer.astro +++ b/src/components/Footer/Footer.astro @@ -1,12 +1,12 @@ --- -import { Github } from "../../icons/Github"; -import { Instagram } from "../../icons/Instagram"; -import { Linkedin } from "../../icons/Linkedin"; -import { Podcast } from "../../icons/Podcast"; -import { X } from "../../icons/X"; -import { Xing } from "../../icons/Xing"; -import { Inovex } from "../../icons/Inovex"; -import getTranslatedContent from "../../utils/directus"; +import { Github } from "@icons/Github"; +import { Instagram } from "@icons/Instagram"; +import { Linkedin } from "@icons/Linkedin"; +import { Podcast } from "@icons/Podcast"; +import { X } from "@icons/X"; +import { Xing } from "@icons/Xing"; +import { Inovex } from "@icons/Inovex"; +import getTranslatedContent from "@utils/directus"; import "./Footer.scss"; const {lang} = Astro.params; @@ -88,13 +88,13 @@ const content = await getTranslatedContent("Footer", lang!);