diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml index d23208f..ce3066a 100644 --- a/.idea/jsLibraryMappings.xml +++ b/.idea/jsLibraryMappings.xml @@ -1,6 +1,7 @@ + \ No newline at end of file diff --git a/.idea/my_portfolio.iml b/.idea/my_portfolio.iml index 24643cc..a73c701 100644 --- a/.idea/my_portfolio.iml +++ b/.idea/my_portfolio.iml @@ -8,5 +8,6 @@ + \ No newline at end of file diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 62b1017..a0d0362 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -1,80 +1,82 @@ import Link from "next/link"; -import { useEffect, useState } from "react"; +import {useEffect, useState} from "react"; export default function Footer() { - const [isVisible, setIsVisible] = useState(false); + const [isVisible, setIsVisible] = useState(false); - useEffect(() => { - setTimeout(() => { - setIsVisible(true); - }, 450); // Delay to start the animation - }, []); + useEffect(() => { + setTimeout(() => { + setIsVisible(true); + }, 450); // Delay to start the animation + }, []); - const scrollToSection = (id: string) => { - const element = document.getElementById(id); - if (element) { - element.scrollIntoView({ behavior: "smooth" }); - } - }; + const scrollToSection = (id: string) => { + const element = document.getElementById(id); + if (element) { + element.scrollIntoView({behavior: "smooth"}); + } + }; - return ( -
-
-
-

Thank You for Visiting

-

- Connect with me on social platforms: -

-
- - - - - - - - - - -
-
-
- -
-
-
- - Privacy Policy - - - Legal Notice - -
+ return ( +
+
+
+

Thank You for Visiting

+

+ Connect with me on social platforms: +

+
+ + + + + + + + + + +
+
+
+ +
+
+
+ + Privacy Policy + + + Legal Notice + +
-

© Dennis Konkol 2025

-
-
-
- ); +

© Dennis Konkol 2025

+
+
+
+ ); } diff --git a/app/components/Footer_Back.tsx b/app/components/Footer_Back.tsx index e7315f8..1436296 100644 --- a/app/components/Footer_Back.tsx +++ b/app/components/Footer_Back.tsx @@ -1,71 +1,73 @@ import Link from "next/link"; -import { useEffect, useState } from "react"; +import {useEffect, useState} from "react"; export default function Footer_Back() { - const [isVisible, setIsVisible] = useState(false); + const [isVisible, setIsVisible] = useState(false); - useEffect(() => { - setTimeout(() => { - setIsVisible(true); - }, 450); // Delay to start the animation - }, []); + useEffect(() => { + setTimeout(() => { + setIsVisible(true); + }, 450); // Delay to start the animation + }, []); - return ( -
-
-
-

- Connect with me on social platforms: -

-
- - - - - - - - - - -
-
-
- - Back to main page - -
-
-
- - Privacy Policy - - - Legal Notice - -
-

© Dennis Konkol 2025

-
-
-
- ); + return ( +
+
+
+

+ Connect with me on social platforms: +

+
+ + + + + + + + + + +
+
+
+ + Back to main page + +
+
+
+ + Privacy Policy + + + Legal Notice + +
+

© Dennis Konkol 2025

+
+
+
+ ); } diff --git a/app/components/Header.tsx b/app/components/Header.tsx index 6bbe7a5..466e205 100644 --- a/app/components/Header.tsx +++ b/app/components/Header.tsx @@ -42,6 +42,7 @@ export default function Header() {