Personal site staging.colinozanne.co.uk
portfolio astro

feat: add viscircle project

finxol.io 35c372d7 f57dc91b

verified
+52 -14
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
··· 67 67 tags: ["Nuxt.js", "Markdown"], 68 68 colour: "--yellow-300", 69 69 startDate: new Date("24 April 2022"), 70 - dateIcon: "tabler:calendar-smile", 70 + runtime: "Deno", 71 + runtimeIcon: "tabler:brand-deno", 72 + repoUrl: "https://tangled.org/finxol.io/blog", 73 + repoIcon: "tabler:brand-git", 74 + }, 75 + { 76 + slug: "viscircle-recaro-pitch", 77 + title: { 78 + fr: "Demo Recaro pour VisCircle", 79 + en: "VisCircle Demo for Recaro", 80 + }, 81 + description: { 82 + fr: "Quelques choses", 83 + en: "Some things", 84 + }, 85 + imgs: { 86 + jpg: recaroPitchJpg, 87 + webp: recaroPitchWebp, 88 + }, 89 + tags: ["Vue.js", "Three.js"], 90 + colour: "--indigo-300", 91 + startDate: new Date("24 April 2022"), 71 92 runtime: "Deno", 72 93 runtimeIcon: "tabler:brand-deno", 73 94 repoUrl: "https://tangled.org/finxol.io/blog",
+15
src/pages/en/projects/viscircle-recaro-pitch.astro
··· 1 + --- 2 + import ProjectPage from "@/components/pages/project.astro"; 3 + 4 + const content = { 5 + projectId: "viscircle-recaro-pitch", 6 + title: "VisCircle Demo for Recaro", 7 + subtitle: "Quelques choses", 8 + datePrefix: "Depuis le", 9 + repoLinkText: "Github repo", 10 + }; 11 + --- 12 + 13 + <ProjectPage content={content}> 14 + <p class="description">Projet de stage</p> 15 + </ProjectPage>
-13
src/pages/fr/index.astro
··· 16 16 description: 17 17 "Voici mes projets les plus intéressants. Cliquez pour en savoir plus !", 18 18 }, 19 - projects: [ 20 - { 21 - id: "karr", 22 - name: "Karr", 23 - description: "Plateforme de covoiturage fédérée", 24 - }, 25 - { 26 - id: "blog", 27 - name: "Blog Technique", 28 - description: 29 - "Blog personnel technique sur lequel j'écris des articles sur la technologie", 30 - }, 31 - ], 32 19 }; 33 20 --- 34 21
+15
src/pages/fr/projects/viscircle-recaro-pitch.astro
··· 1 + --- 2 + import ProjectPage from "@/components/pages/project.astro"; 3 + 4 + const content = { 5 + projectId: "viscircle-recaro-pitch", 6 + title: "Demo Recaro pour VisCircle", 7 + subtitle: "Quelques choses", 8 + datePrefix: "Depuis le", 9 + repoLinkText: "Github repo", 10 + }; 11 + --- 12 + 13 + <ProjectPage content={content}> 14 + <p class="description">Projet de stage</p> 15 + </ProjectPage>