diff --git a/src/app.css b/src/app.css index bd6213e..859c2c3 100644 --- a/src/app.css +++ b/src/app.css @@ -1,3 +1,12 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; + +html, +body { + @apply bg-zinc-800; + @apply text-white; + padding: 0; + margin: 0; + background-image: url(/background.png); +} \ No newline at end of file diff --git a/src/app.html b/src/app.html index 5b53ef7..2d06c87 100644 --- a/src/app.html +++ b/src/app.html @@ -7,6 +7,6 @@ %sveltekit.head% -
%sveltekit.body%
+ %sveltekit.body% diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index e60eb77..289a1e5 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1 +1,12 @@ -

Rowblox is currently under development.

+ + Rowblox + + +
+
+
+ +

Rowblox is currently in development, check back later!

+
+
+
diff --git a/static/background.png b/static/background.png new file mode 100644 index 0000000..15acdc1 Binary files /dev/null and b/static/background.png differ diff --git a/static/banner.png b/static/banner.png new file mode 100644 index 0000000..33fea5c Binary files /dev/null and b/static/banner.png differ diff --git a/static/favicon.png b/static/favicon.png index 825b9e6..df4fe59 100644 Binary files a/static/favicon.png and b/static/favicon.png differ diff --git a/tailwind.config.cjs b/tailwind.config.cjs index a09ab5b..1d0ed50 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -2,6 +2,9 @@ module.exports = { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { + container: { + center: true, + }, extend: {} }, plugins: []