Feat: add Tailwind CSS and Prettier configuration, create reusable components for Title, Description, and Button

This commit is contained in:
mr. M 2024-11-21 00:21:16 +01:00
parent 7bb60fdf2a
commit 8612d6da90
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
11 changed files with 1384 additions and 227 deletions

14
tailwind.config.mjs Normal file
View file

@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
"paper": "#F2F0E3",
"coral": "#F76F53",
"dark": "#202020",
},
},
},
plugins: [],
}