feat: add viscircle project

finxol.io 35c372d7 f57dc91b

verified
src/assets/img/viscircle_recaro_pitch.jpg

This is a binary file and will not be displayed.

src/assets/img/viscircle_recaro_pitch.webp

This is a binary file and will not be displayed.

+22 -1
src/data/projects.ts
···
tags: ["Nuxt.js", "Markdown"],
colour: "--yellow-300",
startDate: new Date("24 April 2022"),
-
dateIcon: "tabler:calendar-smile",
runtime: "Deno",
runtimeIcon: "tabler:brand-deno",
repoUrl: "https://tangled.org/finxol.io/blog",
···
tags: ["Nuxt.js", "Markdown"],
colour: "--yellow-300",
startDate: new Date("24 April 2022"),
+
runtime: "Deno",
+
runtimeIcon: "tabler:brand-deno",
+
repoUrl: "https://tangled.org/finxol.io/blog",
+
repoIcon: "tabler:brand-git",
+
},
+
{
+
slug: "viscircle-recaro-pitch",
+
title: {
+
fr: "Demo Recaro pour VisCircle",
+
en: "VisCircle Demo for Recaro",
+
},
+
description: {
+
fr: "Quelques choses",
+
en: "Some things",
+
},
+
imgs: {
+
jpg: recaroPitchJpg,
+
webp: recaroPitchWebp,
+
},
+
tags: ["Vue.js", "Three.js"],
+
colour: "--indigo-300",
+
startDate: new Date("24 April 2022"),
runtime: "Deno",
runtimeIcon: "tabler:brand-deno",
repoUrl: "https://tangled.org/finxol.io/blog",
+15
src/pages/en/projects/viscircle-recaro-pitch.astro
···
···
+
---
+
import ProjectPage from "@/components/pages/project.astro";
+
+
const content = {
+
projectId: "viscircle-recaro-pitch",
+
title: "VisCircle Demo for Recaro",
+
subtitle: "Quelques choses",
+
datePrefix: "Depuis le",
+
repoLinkText: "Github repo",
+
};
+
---
+
+
<ProjectPage content={content}>
+
<p class="description">Projet de stage</p>
+
</ProjectPage>
-13
src/pages/fr/index.astro
···
description:
"Voici mes projets les plus intéressants. Cliquez pour en savoir plus !",
},
-
projects: [
-
{
-
id: "karr",
-
name: "Karr",
-
description: "Plateforme de covoiturage fédérée",
-
},
-
{
-
id: "blog",
-
name: "Blog Technique",
-
description:
-
"Blog personnel technique sur lequel j'écris des articles sur la technologie",
-
},
-
],
};
---
···
description:
"Voici mes projets les plus intéressants. Cliquez pour en savoir plus !",
},
};
---
+15
src/pages/fr/projects/viscircle-recaro-pitch.astro
···
···
+
---
+
import ProjectPage from "@/components/pages/project.astro";
+
+
const content = {
+
projectId: "viscircle-recaro-pitch",
+
title: "Demo Recaro pour VisCircle",
+
subtitle: "Quelques choses",
+
datePrefix: "Depuis le",
+
repoLinkText: "Github repo",
+
};
+
---
+
+
<ProjectPage content={content}>
+
<p class="description">Projet de stage</p>
+
</ProjectPage>