Skip to content

Commit 895a08a

Browse files
author
MaeWolff
committed
feat: update projects list
1 parent 128b47d commit 895a08a

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

src/components/ProjectCard.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ const formatTechs = (values: string[]) =>
2929
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"
3030
href={link}
3131
target="_blank"
32-
rel="noreferrer"
3332
>
3433
<div class="flex flex-col gap-4 md:flex-row md:items-center">
3534
<p class="text-neutral-100">{title}</p>

src/data/projects.ts

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,24 @@ export type Project = {
77

88
const projects: Project[] = [
99
{
10-
title: "Dictionary App",
11-
techs: ["ReactJS (NextJS)", "react-query", "zod"],
12-
link: "https://github.com/MaeWolff/dictionary-app",
10+
title: "Puppetfactory",
11+
techs: ["Next.js", "TypeScript"],
12+
link: "https://puppetfactory.app/",
13+
},
14+
{
15+
title: "Script to generate Next.js project",
16+
techs: ["Shell"],
17+
link: "https://github.com/MaeWolff/create-nextjs-app-bash-script",
1318
},
1419
{
15-
title: "Portfolio / Lina BLIDI",
16-
techs: ["ReactJS (NextJS)", "TypeScript"],
17-
link: "https://www.linablidi.fr/",
20+
title: "Dictionary App",
21+
techs: ["Next.js", "react-query", "zod"],
22+
link: "https://github.com/MaeWolff/dictionary-app",
1823
},
1924
{
2025
title: "Portfolio / Template",
21-
techs: ["Astro"],
22-
link: "/",
26+
techs: ["Astro", "TypeScript"],
27+
link: "https://github.com/MaeWolff/astro-portfolio-template",
2328
isComingSoon: true,
2429
},
2530
];

0 commit comments

Comments
 (0)