feat: add projects page and rework home page

This commit is contained in:
2026-07-09 16:24:51 +02:00
parent 8aa5aca650
commit 834d7ed00f
32 changed files with 720 additions and 77 deletions
+9
View File
@@ -0,0 +1,9 @@
import { t } from '../utils/i18n';
export interface TimePeriod {
start: string;
end?: string;
}
export const timeToString = (time: TimePeriod): string =>
time.end ? `${time.start}${time.end}` : `${t('misc.since')} ${time.start}`;