diff --git a/src/App.tsx b/src/App.tsx index 7c96e66..e735f2f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,7 +8,7 @@ import { Welcome } from './components/Welcome' const App = (): JSX.Element => { return ( -
+
diff --git a/src/components/Contact.tsx b/src/components/Contact.tsx index 293b592..4a47e1c 100644 --- a/src/components/Contact.tsx +++ b/src/components/Contact.tsx @@ -28,7 +28,7 @@ const contactButtons: { export const Contact = (): JSX.Element => { return (
-
+
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index ce03840..1c036b5 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,7 +1,7 @@ export const Footer = (): JSX.Element => { return ( -
-

© 2023 Karol Stawowski

+
+

Copyright © 2023 Karol Stawowski

) } diff --git a/src/components/Projects/ProjectCard.tsx b/src/components/Projects/ProjectCard.tsx index cec27d4..c04ea8a 100644 --- a/src/components/Projects/ProjectCard.tsx +++ b/src/components/Projects/ProjectCard.tsx @@ -23,7 +23,7 @@ export const ProjectCard = ({ return (

{name}

-
+
{ alt={name} className="w-8 h-8" /> - + {name}
diff --git a/src/components/Technologies/TechButton.tsx b/src/components/Technologies/TechButton.tsx index 26f44cd..aabce0f 100644 --- a/src/components/Technologies/TechButton.tsx +++ b/src/components/Technologies/TechButton.tsx @@ -8,7 +8,7 @@ export const TechButton = ({ imageName, }: TechButtonProps): JSX.Element => { return ( -
+
{ return ( -
+

{''}

{linkTitles.map((title) => ( diff --git a/src/index.css b/src/index.css index fbced85..a305e6f 100644 --- a/src/index.css +++ b/src/index.css @@ -5,7 +5,7 @@ :root { --primary-color: #00bcd1; --accent-color: #3cb0d7; - --gradient-color: #33d1e7; + --gradient-color: #00d8f0; } body { diff --git a/tailwind.config.js b/tailwind.config.js index 073baad..1388cfb 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -17,9 +17,10 @@ module.exports = { secondary: '#0C2F3B', accent: '#3CB0D7', background: '#030A0D', - text: '#D5EEF6', - button: '#e1f8ff', - 'button-hover': '#bfd3d9', + 'text-primary': '#D5EEF6', + 'text-secondary': '#839FA8', + button: '#D6F5FF', + 'button-hover': '#BFD3D9', 'monitor-inner-border': '#32323C', 'monitor-side-pannel': '#0B0D14', 'monitor-outer-border': '#393A3C',