diff --git a/src/app.html b/src/app.html index db4cd51..effef91 100644 --- a/src/app.html +++ b/src/app.html @@ -1,5 +1,5 @@ - + diff --git a/src/components/navbar/navbar.svelte b/src/components/navbar/navbar.svelte new file mode 100644 index 0000000..e65f71f --- /dev/null +++ b/src/components/navbar/navbar.svelte @@ -0,0 +1,14 @@ + + + diff --git a/src/components/navbar/themeController.svelte b/src/components/navbar/themeController.svelte new file mode 100644 index 0000000..f93228a --- /dev/null +++ b/src/components/navbar/themeController.svelte @@ -0,0 +1,28 @@ + diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 0692b6b..ca993c8 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,3 +1,5 @@ -

Welcome to SvelteKit

-

Visit kit.svelte.dev to read the documentation

- + + + diff --git a/static/favicon.png b/static/favicon.png index 825b9e6..5335e13 100644 Binary files a/static/favicon.png and b/static/favicon.png differ diff --git a/tailwind.config.js b/tailwind.config.js index f509904..23222ce 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,11 @@ /** @type {import('tailwindcss').Config} */ export default { - content: ["./index.html",'./src/**/*.{html,js,svelte,ts}'], - theme: { - extend: {} - }, - plugins: [require('daisyui')], - daisyui: { - themes: ['light', 'dark', 'dracula'] - } + content: ["./index.html", "./src/**/*.{html,js,svelte,ts}"], + theme: { + extend: {}, + }, + plugins: [require("daisyui")], + daisyui: { + themes: ["night", "winter"], + }, };