Files
pages/src/routes/projects/projects.ts

37 lines
1.9 KiB
TypeScript
Raw Normal View History

export interface Project {
id: string;
bannerImg: string;
iconImg: string;
title: string;
paragraphs: string[];
links: Link[];
};
export interface Link {
text: string;
link: string;
}
export const projects: Project[] = [
{
id: "weserplaner",
bannerImg: "",
iconImg: "",
title: "WeserPlaner",
paragraphs: [
"<b>WeserPlaner</b> is an app I developed to more easily view relevant information during my studies at the University of Bremen. It can download the user's timetable from the university's learning platform Stud.IP, and it can download the menus for all canteens managed by the Studierendenwerk Bremen, allowing the user to filter for dietary preferences as well as hiding items containing substances they are allergic against.",
"In developing this app, I took heavy inspiration from an earlier project of mine, <b>AvH-Vertretungsplan</b>, which was an app I developed for a school I used to attend, in order to view the substitution plan as well as the canteen offers more easily. Quite similar!",
"I stopped work on the app in favour of other projects, notably because I had no significant plans for it. The app was taken down from the Google Play Store after I refused to comply with their new developer guidelines, requiring me to publish my home address (what the actual fuck Google?), and after the Studierendenwerk Bremen updated their page around the start of 2025, the app became nonfunctional.",
],
links: [
{
text: "View on <b>Codeberg</b>",
link: "https://codeberg.org/denizk0461/weserplaner/",
},
{
text: "View on <b>Google Play</b> (outdated)",
link: "https://play.google.com/store/apps/details?id=com.denizk0461.weserplaner",
},
],
},
];