personal-website/src/i18n/fr.js

86 lines
2.9 KiB
JavaScript
Raw Normal View History

export const fr = {
title: "Lorem Ipsum", // Title of the main page in browser's handlebard
description: "Page description here", // HTML page description
/*
Hero module of the page
*/
hero: {
title: "Lorem",
content: "ipsum dolor",
image: "/temp.jpg",
buttons: ["Button 1", "Button 2"],
},
/*
About module of the page
*/
about: [
{
// About page first block title
title: "Lorem",
// Content of about page first block
content:
"Lorem ipsum dolor sit amet consectetur, adipisicing elit. Atque consequatur voluptatibus nobis dolores repellendus similique, ut sit odit commodi optio tempore totam, quaerat at distinctio nisi dolore magnam quia perferendis.",
// Image
image: "/temp.jpg",
},
{
// About page second block title
title: "Ipsum",
// Content of about page's second block
content:
"Lorem ipsum dolor sit amet consectetur, adipisicing elit. Atque consequatur voluptatibus nobis dolores repellendus similique, ut sit odit commodi optio tempore totam, quaerat at distinctio nisi dolore magnam quia perferendis.",
// Image
image: "/temp.jpg",
},
{
// About page third block title
title: "Ipsum",
// Content of about page's third block
content:
"Lorem ipsum dolor sit amet consectetur, adipisicing elit. Atque consequatur voluptatibus nobis dolores repellendus similique, ut sit odit commodi optio tempore totam, quaerat at distinctio nisi dolore magnam quia perferendis.",
// Image
image: "/temp.jpg",
},
],
/*
Showcase module of the page
*/
showcase: [
{
value: "first",
handle: "Website",
title: "My personal webpage",
href: "/potato",
description:
"My personal website, clearly you've found it. Made in Astro.js with help of shadcnui components.",
image: "/temp.jpg",
imageAlt: "Screenshot of this website",
},
{
value: "second",
title: "Self-hostable",
handle: "HomeLab",
href: "/potat2",
description:
"It has now been a few years since I've started with selfhosting. It started as one single Raspberry Pi 4, then it grew to cluster of 4 Pis... and now I have 2 old IBM servers (x3550 m4).",
image: "/temp.jpg",
imageAlt: "Photo of my personal homelab",
},
{
value: "third",
title: "ESA's Astro Pi Challenge 2022/23",
handle: "ESA Astro Pi",
href: "/kartoffeln",
description:
"Astro Pi is a competition for high school students by the European Space Agency. It's goal is to make it possible for students to run their code on the ISS. I was part of the Barrande team from our school. As our mission we chose Classification of Earth's topology using AI in Real-Time and I was the one tasked with programmign the AI. The mission was very successfull and we were nominated to 10 best teams. Reports and other data can be found on ESA's website.",
image: "/temp.jpg",
imageAlt: "Image for of our task and results explanation",
},
],
postsTagged: "All posts tagged with",
};