From eaa7eea7f5ea6048acc02036277c525a6395f80d Mon Sep 17 00:00:00 2001 From: Anton Date: Mon, 1 Jan 2024 21:08:45 +0100 Subject: [PATCH] some css fixes --- public/fear2.svg | 21 ++++++++--- src/ModalContent.tsx | 85 ++++++++++++++++++++++---------------------- 2 files changed, 59 insertions(+), 47 deletions(-) diff --git a/public/fear2.svg b/public/fear2.svg index abac368b..a51838b4 100644 --- a/public/fear2.svg +++ b/public/fear2.svg @@ -34,15 +34,15 @@ inkscape:pagecheckerboard="0" inkscape:document-units="pt" showgrid="false" - inkscape:zoom="0.13385319" - inkscape:cx="-571.52168" - inkscape:cy="395.9562" + inkscape:zoom="0.189297" + inkscape:cx="800.32966" + inkscape:cy="697.31693" inkscape:window-width="1920" inkscape:window-height="1013" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" - inkscape:current-layer="layer2" + inkscape:current-layer="layer3" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" @@ -51,6 +51,19 @@ id="metadata2"> Created by potrace 1.15, written by Peter Selinger 2001-2017 + + + -

Welcome, glad you are here!

- -

- In the 21st century, humanity is at a special point in its history. +

Welcome, glad you are here!

+ +

+ In the 21st century, humanity is at a special point in its history.

-

+

On the one hand, the people of Planet Earth are facing a multitude of fundamental crises. -

-

+

+

On the other hand, we have all the knowledge and technology to heal the planet and live in harmony with Mother Earth.

-
- - +
+
) @@ -29,21 +28,21 @@ export function Welcome1({ clickAction }: ChapterProps) { export function Welcome2({ clickAction }: ChapterProps) { return ( <> -

Hypnosis and Disillusion

- -

- Most people are still stuck in old ways of thinking and living.

- +

Hypnosis and Disillusion

-

- Hypnotised, they sit in front of screens in concrete blocks, flooded and disillusioned by irrelevant information. +

+ Most people are still stuck in old ways of thinking and living.

+ + +

+ Hypnotised, they sit in front of screens in concrete blocks, flooded and disillusioned by irrelevant information.

-

+

From an early age, they are trained to do alienated work and consume unhealthy and meaningless products. -

-
- +

+
+
) @@ -52,19 +51,19 @@ export function Welcome2({ clickAction }: ChapterProps) { export function Welcome3({ clickAction }: ChapterProps) { return ( <> -

But Consciousness is rising

-

- More and more people are waking up to what's really happening.

-

- They are in the process of understanding the potential that is within themselves and within the whole mankind. +

But Consciousness is rising

+

+ More and more people are waking up to what's really happening.

+

+ They are in the process of understanding the potential that is within themselves and within the whole mankind.

- + -

- Starting to reconnect with our Mother Earth and beginning to question things that long times have been taken for granted. -

-
- +

+ Starting to reconnect with our Mother Earth and beginning to question things that long times have been taken for granted. +

+
+
) @@ -73,16 +72,16 @@ export function Welcome3({ clickAction }: ChapterProps) { export function Welcome4({ clickAction }: ChapterProps) { return ( <> -

Gemeinsam erschaffen wir Strukturen

-
    +

    Gemeinsam erschaffen wir Strukturen

    +
    • 🥕 Essen & Trinken
    • 🏡 Wohn- & Lebensraum
    • 💬 Kommunikation
    • 💡 Energie
    • 🚐 Mobilität
    -
    - +
    +
    ) @@ -96,7 +95,7 @@ export const ModalContent = () => { const [chapter, setChapter] = useState(1); //const setQuestsOpen = useSetQuestOpen() - + const ActiveChapter = () => { @@ -107,19 +106,19 @@ export const ModalContent = () => { return { setChapter(3) }} /> case 3: return { - + close(); setTimeout(() => { - // setQuestsOpen(true); + // setQuestsOpen(true); setChapter(1); }, 1000); - + }} /> default: return <> }; }; - return ( - - ) + return ( + + ) }