Initial CV lib commit

This commit is contained in:
2025-03-07 16:59:01 +02:00
commit 9fbc7d6f81
54 changed files with 812 additions and 0 deletions

27
tailwind.config.js Normal file
View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: [
"./css/*.{js,ts,jsx,tsx,css,scss,html}",
"./css/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx,rs,scss,css,html}",
"./index.html",
"./src/main.rs",
],
plugins: [require("daisyui"), require("@tailwindcss/typography")],
theme: {
extend: {
fontFamily: {
sans: ["Figtree"],
serif: ["Rufina"],
mono: ["Cousine"],
},
width: {
a4: "210mm",
},
height: {
a4: "297mm",
},
},
},
};