initial commit

This commit is contained in:
Zvonimir Rudinski
2024-07-07 04:20:03 +02:00
commit a84874fb8e
30 changed files with 9272 additions and 0 deletions

9
astro.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), icon()]
});