Skip to content

Commit

Permalink
feat: update projects list
Browse files Browse the repository at this point in the history
  • Loading branch information
MaeWolff committed Jun 7, 2024
1 parent 128b47d commit 895a08a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/components/ProjectCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const formatTechs = (values: string[]) =>
class="group flex w-full cursor-pointer flex-col justify-between gap-2 rounded-md border border-neutral-700 p-4 transition-all duration-300 hover:-translate-y-2 hover:border-neutral-400 md:flex-row md:items-center"
href={link}
target="_blank"
rel="noreferrer"
>
<div class="flex flex-col gap-4 md:flex-row md:items-center">
<p class="text-neutral-100">{title}</p>
Expand Down
21 changes: 13 additions & 8 deletions src/data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,24 @@ export type Project = {

const projects: Project[] = [
{
title: "Dictionary App",
techs: ["ReactJS (NextJS)", "react-query", "zod"],
link: "https://github.com/MaeWolff/dictionary-app",
title: "Puppetfactory",
techs: ["Next.js", "TypeScript"],
link: "https://puppetfactory.app/",
},
{
title: "Script to generate Next.js project",
techs: ["Shell"],
link: "https://github.com/MaeWolff/create-nextjs-app-bash-script",
},
{
title: "Portfolio / Lina BLIDI",
techs: ["ReactJS (NextJS)", "TypeScript"],
link: "https://www.linablidi.fr/",
title: "Dictionary App",
techs: ["Next.js", "react-query", "zod"],
link: "https://github.com/MaeWolff/dictionary-app",
},
{
title: "Portfolio / Template",
techs: ["Astro"],
link: "/",
techs: ["Astro", "TypeScript"],
link: "https://github.com/MaeWolff/astro-portfolio-template",
isComingSoon: true,
},
];
Expand Down

0 comments on commit 895a08a

Please sign in to comment.