Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 626c861

Browse files
committed
Fix images + review intro
1 parent 6cb71ed commit 626c861

File tree

12 files changed

+371
-43
lines changed

12 files changed

+371
-43
lines changed

assets/chicio-coding-banner.pxd

3.08 MB
Binary file not shown.

assets/react-logo.pxd

185 KB
Binary file not shown.

src/components/design-system/organism/technologies.tsx

Lines changed: 15 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import styled from "styled-components";
44
import { ContainerFluid } from "../atoms/container-fluid";
55
import { mediaQuery } from "../utils-css/media-query";
66
import { FC } from "react";
7+
import { Container } from "../atoms/container";
78

89
const TechnologiesContainer = styled(ContainerFluid)`
910
margin: 0;
@@ -21,6 +22,7 @@ const TechnologyParagraph = styled(Paragraph)`
2122
text-align: center;
2223
margin-bottom: ${(props) => props.theme.spacing[7]};
2324
color: ${(props) => props.theme.light.textAbovePrimaryColor};
25+
font-size: ${(props) => props.theme.fontSizes[3]};
2426
2527
${mediaQuery.dark} {
2628
color: ${(props) => props.theme.dark.textAbovePrimaryColor};
@@ -54,46 +56,17 @@ export interface TechnologiesProps {
5456

5557
export const Technologies: FC<TechnologiesProps> = ({ author }) => (
5658
<TechnologiesContainer>
57-
<TechnologyParagraph>
58-
{`I’m ${author}, a software developer with over 15 years of experience, working in the field since 2008. I specialise in developing mobile and web applications. I also maintain smaller open-source projects and I have a blog where I speak about technology.`}
59-
</TechnologyParagraph>
59+
<Container>
60+
<TechnologyParagraph>
61+
{`I’m ${author}, a software developer with over 15 years of experience, working in the field since 2008. I specialise in developing mobile 📱 and web applications 🚀. I also maintain small open-source projects and I have a blog where I speak about technology.`}
62+
</TechnologyParagraph>
63+
</Container>
6064
<TechnologiesIconsContainer>
6165
<TechnologyImageContainer>
6266
<StaticImage
6367
objectFit={"contain"}
64-
src={"../../../images/technologies/xcode.png"}
65-
alt={"xcode"}
66-
placeholder={"blurred"}
67-
/>
68-
</TechnologyImageContainer>
69-
<TechnologyImageContainer>
70-
<StaticImage
71-
src={"../../../images/technologies/swift.png"}
72-
alt={"swift"}
73-
placeholder={"blurred"}
74-
/>
75-
</TechnologyImageContainer>
76-
<TechnologyImageContainer>
77-
<StaticImage
78-
objectFit={"contain"}
79-
src={"../../../images/technologies/android.png"}
80-
alt={"android"}
81-
placeholder={"blurred"}
82-
/>
83-
</TechnologyImageContainer>
84-
<TechnologyImageContainer>
85-
<StaticImage
86-
objectFit={"contain"}
87-
src={"../../../images/technologies/cpp.png"}
88-
alt={"c++"}
89-
placeholder={"blurred"}
90-
/>
91-
</TechnologyImageContainer>
92-
<TechnologyImageContainer>
93-
<StaticImage
94-
objectFit={"contain"}
95-
src={"../../../images/technologies/opengl-es.png"}
96-
alt={"opengl"}
68+
src={"../../../images/technologies/typescript.png"}
69+
alt={"typescript"}
9770
placeholder={"blurred"}
9871
/>
9972
</TechnologyImageContainer>
@@ -108,24 +81,23 @@ export const Technologies: FC<TechnologiesProps> = ({ author }) => (
10881
<TechnologyImageContainer>
10982
<StaticImage
11083
objectFit={"contain"}
111-
src={"../../../images/technologies/php.png"}
112-
alt={"php"}
84+
src={"../../../images/technologies/xcode.png"}
85+
alt={"xcode"}
11386
placeholder={"blurred"}
11487
/>
11588
</TechnologyImageContainer>
11689
<TechnologyImageContainer>
11790
<StaticImage
118-
objectFit={"contain"}
119-
src={"../../../images/technologies/html-css-js.png"}
120-
alt={"js"}
91+
src={"../../../images/technologies/swift.png"}
92+
alt={"swift"}
12193
placeholder={"blurred"}
12294
/>
12395
</TechnologyImageContainer>
12496
<TechnologyImageContainer>
12597
<StaticImage
12698
objectFit={"contain"}
127-
src={"../../../images/technologies/typescript.png"}
128-
alt={"typescript"}
99+
src={"../../../images/technologies/android.png"}
100+
alt={"android"}
129101
placeholder={"blurred"}
130102
/>
131103
</TechnologyImageContainer>

0 commit comments

Comments
 (0)