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

Commit

Permalink
Fix images + review intro
Browse files Browse the repository at this point in the history
  • Loading branch information
chicio committed Dec 30, 2024
1 parent 6cb71ed commit 626c861
Show file tree
Hide file tree
Showing 12 changed files with 371 additions and 43 deletions.
Binary file added assets/chicio-coding-banner.pxd
Binary file not shown.
Binary file added assets/react-logo.pxd
Binary file not shown.
58 changes: 15 additions & 43 deletions src/components/design-system/organism/technologies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import styled from "styled-components";
import { ContainerFluid } from "../atoms/container-fluid";
import { mediaQuery } from "../utils-css/media-query";
import { FC } from "react";
import { Container } from "../atoms/container";

const TechnologiesContainer = styled(ContainerFluid)`
margin: 0;
Expand All @@ -21,6 +22,7 @@ const TechnologyParagraph = styled(Paragraph)`
text-align: center;
margin-bottom: ${(props) => props.theme.spacing[7]};
color: ${(props) => props.theme.light.textAbovePrimaryColor};
font-size: ${(props) => props.theme.fontSizes[3]};
${mediaQuery.dark} {
color: ${(props) => props.theme.dark.textAbovePrimaryColor};
Expand Down Expand Up @@ -54,46 +56,17 @@ export interface TechnologiesProps {

export const Technologies: FC<TechnologiesProps> = ({ author }) => (
<TechnologiesContainer>
<TechnologyParagraph>
{`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.`}
</TechnologyParagraph>
<Container>
<TechnologyParagraph>
{`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.`}
</TechnologyParagraph>
</Container>
<TechnologiesIconsContainer>
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/xcode.png"}
alt={"xcode"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
<TechnologyImageContainer>
<StaticImage
src={"../../../images/technologies/swift.png"}
alt={"swift"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/android.png"}
alt={"android"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/cpp.png"}
alt={"c++"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/opengl-es.png"}
alt={"opengl"}
src={"../../../images/technologies/typescript.png"}
alt={"typescript"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
Expand All @@ -108,24 +81,23 @@ export const Technologies: FC<TechnologiesProps> = ({ author }) => (
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/php.png"}
alt={"php"}
src={"../../../images/technologies/xcode.png"}
alt={"xcode"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/html-css-js.png"}
alt={"js"}
src={"../../../images/technologies/swift.png"}
alt={"swift"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
<TechnologyImageContainer>
<StaticImage
objectFit={"contain"}
src={"../../../images/technologies/typescript.png"}
alt={"typescript"}
src={"../../../images/technologies/android.png"}
alt={"android"}
placeholder={"blurred"}
/>
</TechnologyImageContainer>
Expand Down
Loading

0 comments on commit 626c861

Please sign in to comment.