Uses tailwind for most of the homepage styling and adds prettier

This commit is contained in:
2025-06-05 12:28:41 -07:00
parent 2f1edd9851
commit fe707a600e
8 changed files with 985 additions and 339 deletions

13
.prettierrc.mjs Normal file
View File

@@ -0,0 +1,13 @@
// .prettierrc.mjs
/** @type {import("prettier").Config} */
export default {
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};