new theme done
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Gianmarco Pettinato
2022-04-18 15:36:18 +02:00
parent 1ff883e624
commit 1669eeff4d
95 changed files with 4612 additions and 12087 deletions

5
src/lib/types.ts Normal file
View File

@@ -0,0 +1,5 @@
export type CurrentLanguage = 'it' | 'en';
export type MenuEntry = 'home' | 'job' | 'school' | 'blog' | 'portfolio';
export type LanguagePair = {
[key in CurrentLanguage]: string;
};