feat: added initial resume

This commit is contained in:
Morten Olsen
2024-01-17 20:23:45 +01:00
parent 5f79c8da43
commit 592032240f
33 changed files with 1439 additions and 34 deletions

13
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
screens: {
scr: {'raw': 'screen'},
nsm: {'raw': '(min-width: 640px)'},
},
},
},
plugins: [],
}