portfolio-page/src/config/locales/en/projects.ts

57 lines
2.2 KiB
TypeScript

import portfolioImage from '@/assets/portfolio.PNG';
import ergoVRImage from '@/assets/ErgoVR.PNG';
import icaraceImage from '@/assets/icarace.PNG';
import dancaAlegriaImage from '@/assets/Danca-Alegria.png';
import lukasImage from '@/assets/lukas.png';
import a11yhubImage from '@/assets/a11yhub.png';
export const projects = {
title: 'Featured Projects',
subtitle: 'A showcase of my work and personal projects',
codeButtonText: 'Code',
liveButtonText: 'Live',
projectItems: [
{
id: 1,
title: 'Portfolio Website',
description:
'A personal portfolio website to showcase my skills, projects, and experience.',
image: portfolioImage,
technologies: ['React', 'TypeScript', 'SCSS', 'Github Copilot'],
year: '2025',
github: 'https://codeberg.org/saschab/portfolio-page',
live: 'https://www.sascha-bach.de',
},
{
id: 2,
title: 'Danca Alegria Association Website',
description:
'Assist in volunatary changes to accomodate WCAG 2.1 Level AA accessibility.',
image: dancaAlegriaImage,
technologies: ['Wordpress', 'PHP', 'HTML', 'CSS'],
year: '2025',
live: 'https://www.danca-alegria.de',
},
{
id: 3,
title: 'Squarespace Page for Mobile Massage Service',
description:
'Designed and built a service landing page, offer presentation, and appointment scheduling with Squarespace.',
image: lukasImage,
technologies: ['Squarespace', 'CSS', 'Figma'],
year: '2026',
live: 'https://www.lukasmobilemassage.de',
},
{
id: 4,
title: 'Platform for Digital Accessibility Education Offers',
description:
'A collaboration project with Benjamin Christi to provide one central place for events, webinars, and training offers about digital accessibility.',
image: a11yhubImage,
technologies: ['Payload', 'CSS', 'Typescript'],
year: '2026',
live: 'https://www.a11y-hub.de',
}
],
};