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.
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: [],
};
@tailwind base;
@tailwind components;
@tailwind utilities;