This is basicly a headless solution as a theme. Feel free to modify it as much as you like. If you see anything you want to add to this theme feel free to create a pull request.
- 💡 Built with Svelte for component-based programming
- 🛰 Added Routify for advanced routing
- 🛠 Bootstrap 5 for elegant theming
- ⚡️ Vite for ultra fast compiling
- 🖌️ SASS for creating awesome stylesheets
- 🏗 TypeScript for ever better programming
This theme has Bootstrap 5 already integrated into it.
To replace Bootstrap 5 with Tailwind symply execute the following commands:
yarn remove bootstrap
yarn add -D tailwindcss postcss autoprefixer
yarn tailwindcss init -p
module.exports = {
content: ["./src/**/*.{svelte,js,ts,css,sass,scss}"],
theme: {
extend: {},
},
plugins: [],
};
Create a new file for TailwindCSS called index.css, include it in the main.ts and add the following:
@tailwind base;
@tailwind components;
@tailwind utilities;