Skip to content

Commit

Permalink
fix: project info
Browse files Browse the repository at this point in the history
  • Loading branch information
kalecream committed Jul 26, 2023
1 parent dcaa58e commit 07cada1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions data/projectsData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ interface ProjectStructure {
image?: string,
description: ReactNode,
link?: string,
repoName: string,
repoName?: string,
technology: ReactNode[],
language: string | string[],
language: string[],
created: string,
updated?: string
}
Expand Down Expand Up @@ -73,11 +73,13 @@ export const Projects: ProjectStructure[] = [
Wordpress and now in Typescript.
</span>
),
repoName: "",
technology: [
<a href="https://nextjs.org/">Next.js</a>,
<a href="https://threejs.org/">Three.js</a>,
<a href="https://greensock.com/gsap/">GSAP</a>,
],
created: "2022-08",
language: ["TypeScript", "MDX"],
},
{
Expand All @@ -99,6 +101,8 @@ export const Projects: ProjectStructure[] = [
id: "005",
display: true,
title: "Swagger Login Test",
link: "https://sphenery.vercel.app/login",
image: "./img/projects/sphenery.webp",
description: (
<span>
A register/login form done for a test of the Swagger API.
Expand All @@ -107,6 +111,7 @@ export const Projects: ProjectStructure[] = [
technology: [
<a href="https://sphenery.com/swagger/index.html">Swagger SMTest</a>
],
repoName: "Sphenery",
language: ["React", "Typescript"],
created: "2023-07-23"
}
Expand Down
Binary file added public/img/projects/sphenery.webp
Binary file not shown.

0 comments on commit 07cada1

Please sign in to comment.