Skip to content

Commit

Permalink
🔀 Merge branch 'release/1.0.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pustur committed Mar 3, 2023
2 parents 26c3541 + 4d283ab commit 95ebb7b
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 14 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "loris-portfolio",
"private": true,
"description": "My personal portfolio website showcasing my projects",
"version": "1.0.8",
"version": "1.0.9",
"author": "Loris Bettazza <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "1.12.0",
Expand All @@ -20,7 +20,7 @@
"gatsby-source-filesystem": "2.11.0",
"gatsby-transformer-sharp": "2.12.0",
"intersection-observer": "0.12.0",
"marked": "2.0.0",
"marked": "4.2.12",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/AboutMe/AboutMe.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import marked from 'marked';
import { marked } from 'marked';
import styled from 'styled-components';
import { StaticQuery, graphql } from 'gatsby';

Expand Down
2 changes: 1 addition & 1 deletion src/components/Contact/Contact.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import marked from 'marked';
import { marked } from 'marked';
import styled from 'styled-components';
import { StaticQuery, graphql } from 'gatsby';

Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import marked from 'marked';
import { marked } from 'marked';
import styled from 'styled-components';
import { StaticQuery, graphql } from 'gatsby';

Expand Down
2 changes: 1 addition & 1 deletion src/components/Projects/Projects.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import marked from 'marked';
import { marked } from 'marked';
import styled from 'styled-components';
import { StaticQuery, graphql } from 'gatsby';

Expand Down
2 changes: 1 addition & 1 deletion src/components/Social/Social.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import marked from 'marked';
import { marked } from 'marked';
import styled from 'styled-components';
import { StaticQuery, graphql } from 'gatsby';

Expand Down
13 changes: 13 additions & 0 deletions src/components/TechnologyIcon/TechnologyIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,19 @@ const icons = {
/>
</svg>
),

vitest: (
<svg width={size} height={size} fill="none" viewBox="7 15 152 139">
<g fill={colors.accent}>
<path d="m120.8 57.3-36.1 52.2a3.1 3.1 0 0 1-5.7-1.9l1.5-28.8-23.4-5a3.1 3.1 0 0 1-2.4-3.4c0-.5.2-1 .5-1.4l36.2-52.2a3.1 3.1 0 0 1 5.6 1.9l-1.4 28.8 23.3 5a3.1 3.1 0 0 1 2.5 3.3c-.1.6-.3 1-.6 1.5z" />
<path
fillOpacity=".5"
d="M83 153.3a7.3 7.3 0 0 0 5.1-2.1l34.2-34.1a7.3 7.3 0 0 0-10.4-10.4l-29 29-63-63.1A7.3 7.3 0 0 0 9.4 82.9l68.3 68.3a7.3 7.3 0 0 0 5.2 2.1z"
/>
<path d="M83 153.3a7.3 7.3 0 0 1-5.2-2.1l-34.1-34.1A7.3 7.3 0 0 1 54 106.7l29 29L146 72.6a7.3 7.3 0 0 1 10.4 10.3l-68.3 68.3a7.3 7.3 0 0 1-5.2 2.1z" />
</g>
</svg>
),
};

const TechnologyIcon = ({ icon, ...otherProps }) =>
Expand Down

0 comments on commit 95ebb7b

Please sign in to comment.