feat: add new logo

This commit is contained in:
uku 2024-11-27 10:14:58 +01:00
parent 9de0059976
commit 3279036332
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
5 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<link rel="icon" href="%sveltekit.assets%/favicon.avif" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>

View file

@ -8,7 +8,7 @@
const props: Props = $props();
</script>
<h1>TCL-Guessr</h1>
<h1><img src="/logo.avif" alt="tcl-guessr logo" width="240" height="240" /></h1>
<div class="login">
{#if props.data.user === null}
@ -50,12 +50,15 @@
</form>
<style>
img {
vertical-align: middle;
}
.login {
font-size: 20px;
}
.pfp {
vertical-align: middle;
border-radius: 100%;
}