diff --git a/src/app.css b/src/app.css
new file mode 100644
index 0000000..bd6213e
--- /dev/null
+++ b/src/app.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
\ No newline at end of file
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
new file mode 100644
index 0000000..5c8044c
--- /dev/null
+++ b/src/routes/+layout.svelte
@@ -0,0 +1,5 @@
+
+
+
\ No newline at end of file
diff --git a/tailwind.config.js b/tailwind.config.js
index c189a4a..13207cc 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
export default {
- content: [],
+ content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},