Cyril Šebek 85d38eb3d5
SEO optimizations
SEO optimizations using astro-seo and SEO component
Modified i18n to incorporate complex SEO
2024-07-09 15:59:09 +02:00

117 lines
3.9 KiB
JavaScript

export const fr = {
title: "Cyril Šebek", // Title of the main page in browser's handlebard
description: "Hi there, I am Cyril, one weird student from Czechia, also a programmer and a musician.",
favicon: "/favicon.svg",
/*
Top navigation bar
*/
navbar: {
home: "Home",
blog: "Blog",
music: "My compositions",
lang: "Languages",
mode: "Theme"
},
/*
Hero module of the page
*/
hero: {
title: "Coding Rhythms and Melodic Algorithms",
content: "Welcome to personal website & blog of one weird student from Czechia",
image: "/frontpage.svg",
buttons: ["Read more", "Blog"],
},
/*
About module of the page
*/
about: [
{
// About page first block title
title: "Student",
// Content of about page first block
content:
"Currently, I am a high school student with a passion for mathematics, physics and ICT, but I maintain excellent grades across all subjects.",
// Image
image: "/student.png",
},
{
// About page second block title
title: "Programmer",
// Content of about page's second block
content:
"I started programming in my free time in 6th grade. After experimenting with various languages, I now primarily use Python for AI/ML and general scripting, and JavaScript for web development, along with other languages as needed for specific projects.",
// Image
image: "/programmer.svg",
},
{
// About page third block title
title: "Musician",
// Content of about page's third block
content:
"I began playing the flute in the first grade and have since transitioned to playing the clarinet in multiple orchestras. I am deeply passionate about music and dedicate a portion of my free time to composing and studying film music.",
// Image
image: "/musician.png",
},
],
/*
Showcase module of the page
*/
showcase: [
{
value: "website",
handle: "Website",
title: "My personal webpage",
description:
"My personal website, clearly you've found it. Built using Astro.js and enhanced with Shadcn/UI components, this iteration marks its sixth version, yet it's the first one I've truly completed.",
image: "/website.png",
imageAlt: "Screenshot of this website",
},
{
value: "second",
title: "Self-hostable",
handle: "Homelab",
description:
"It's been a few years since I started self-hosting. What began with a single Raspberry Pi 4 has evolved into a cluster of four Pis. Now, I rely on two old IBM servers (x3550 M4) to host nearly everything I need: a video server, music server, Git repositories, and even a password manager. It's become a robust setup that meets all my requirements.",
image: "/homelab.jpg",
imageAlt: "Photo of my personal homelab",
},
{
value: "third",
title: "ESA's Astro Pi Challenge 2022/23",
handle: "ESA Astro Pi",
description:
"Astro Pi is a competition for high school students hosted by the European Space Agency. Its goal is to enable students to run their code aboard the ISS. I was part of the Barrande team from our school. For our mission, we chose \"Real-Time Classification of Earth\'s Topology using AI,\" and I was responsible for programming the AI. Our mission was highly successful, and we were nominated as one of the top 10 teams. Detailed reports and additional data can be found on the ESA\'s website.",
image: "/astropi.png",
imageAlt: "Image for of our task and results explanation",
},
],
/*
Blog page
*/
blog: {
title: "Blog @ Cyril Šebek",
visible: "Blog",
description: "My personal blog, documenting some of my crazy ideas",
},
/*
Page with musical compositions
*/
music: {
pageTitle: "Music @ Cyril Šebek",
title: "My compositions",
description: "This is page is listing all my published musical compositions.",
ogDescription: "This page lists all published compositions by Cyril Šebek",
downloadPDF: "Download PDF",
downloadMP3: "Download MP3",
downloadFLAC: "Download FLAC"
},
postsTagged: "All posts tagged with",
};