about & global changes

This commit is contained in:
2024-02-24 16:00:51 +01:00
parent 909ff7907b
commit 8af63ab911
3 changed files with 21 additions and 8 deletions
+5
View File
@@ -49,6 +49,11 @@ export const StyledAbout = styled.section`
h1 {
margin: 0;
vertical-align: middle;
}
p {
font-size: 1.2em;
}
}
`;
+1 -1
View File
@@ -63,7 +63,7 @@ export const GlobalStyles = createGlobalStyle`
}
}
img {
img, svg {
max-width: 100%;
vertical-align: middle;
}
+15 -7
View File
@@ -1,7 +1,8 @@
import { FaBriefcase, FaHeart, FaStar, FaUserGraduate } from 'react-icons/fa';
import { FaBriefcase, FaHeart, FaStar, FaUserGraduate, FaVuejs } from 'react-icons/fa';
import { StyledAbout } from '../components/styles/About.styled';
import { StyledCursor } from '../components/styles/Cursor.styled';
import { StyledSectionHeader } from '../components/styles/SectionHeader.styled';
import { SiNestjs } from 'react-icons/si';
function AboutSection() {
return (
@@ -54,18 +55,25 @@ function AboutSection() {
<div className="stat-item">
<h1>
<FaHeart />
<div>Ulubione technologie</div>
<FaBriefcase />
<div>Zaawansowanie zawodowe</div>
</h1>
<p>Vue.js, Typescript</p>
<p>
początkujący <br />
junior
</p>
</div>
<div className="stat-item">
<h1>
<FaBriefcase />
<div>Zaawansowanie zawodowe</div>
<FaHeart />
<div>Ulubione technologie</div>
</h1>
<p>junior</p>
<p>
<FaVuejs /> Vue
<br />
<SiNestjs /> NestJS
</p>
</div>
</div>
</StyledAbout>