Quick change

This commit is contained in:
I-Have-An-Issue 2022-10-07 18:12:32 -04:00
parent 207f1188b3
commit 22bc54caa6
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
3 changed files with 7 additions and 4 deletions

View File

@ -2,8 +2,8 @@
<title>Landing - Rowblox</title> <title>Landing - Rowblox</title>
</svelte:head> </svelte:head>
<div class="max-w-lg mx-auto text-center"> <div class="max-w-xl mx-auto text-center">
<img class="max-w-lg" src="/img/banner.png" alt="" /> <img class="max-w-md mx-auto" src="/img/banner.png" alt="" />
<div class="text-xl text-white"> <div class="text-xl text-white">
<a class="px-5 py-1 rounded shadow-lg border-2 border-blue-500 hover:bg-blue-500" href="/login">Login</a> <a class="px-5 py-1 rounded shadow-lg border-2 border-blue-500 hover:bg-blue-500" href="/login">Login</a>
<a class="px-5 py-1 rounded shadow-lg border-2 border-blue-500 hover:bg-blue-500" href="/register">Register</a> <a class="px-5 py-1 rounded shadow-lg border-2 border-blue-500 hover:bg-blue-500" href="/register">Register</a>

View File

@ -3,6 +3,6 @@
</svelte:head> </svelte:head>
<div class="max-w-xl mx-auto text-center"> <div class="max-w-xl mx-auto text-center">
<img class="max-w-lg" src="/img/banner.png" alt="" /> <img class="max-w-md mx-auto" src="/img/banner.png" alt="" />
<p class="text-xl text-white">Rowblox is currently under development, check back later!</p> <p class="text-xl text-white">Rowblox is currently under development, check back later!</p>
</div> </div>

View File

@ -1,7 +1,10 @@
import { sveltekit } from "@sveltejs/kit/vite"; import { sveltekit } from "@sveltejs/kit/vite";
const config = { const config = {
plugins: [sveltekit()] plugins: [sveltekit()],
define: {
"process.env": process.env
}
}; };
export default config; export default config;