Update layout to be a svelte monorepo with shadcn-svelte
Also: add the start of a.starrysky.fyi
diff --git a/packages/components/postcss.config.cjs b/packages/components/postcss.config.cjs
new file mode 100644
index 0000000..04e27fe
--- /dev/null
+++ b/packages/components/postcss.config.cjs
@@ -0,0 +1,13 @@
+const tailwindcss = require('tailwindcss');
+const autoprefixer = require('autoprefixer');
+
+const config = {
+ plugins: [
+ //Some plugins, like tailwindcss/nesting, need to run before Tailwind,
+ tailwindcss(), //But others, like autoprefixer, need to run after,
+ autoprefixer,
+ autoprefixer
+ ]
+};
+
+module.exports = config;