Skip to content

Commit

Permalink
Add our logo
Browse files Browse the repository at this point in the history
  • Loading branch information
selfsigned committed Jan 23, 2024
1 parent b47549f commit 9d79fe7
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -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.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
Expand Down
56 changes: 56 additions & 0 deletions src/lib/logo.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<script>
export let width = '32px';
let muhclass = '';
export { muhclass as class };
</script>

<svg class={muhclass} {width} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"
><defs
><style>
.c {
stroke-width: 0.75px;
}
.c,
.d,
.e {
stroke-linecap: round;
stroke-linejoin: round;
}
.c,
.d,
.e,
.f {
stroke: #010101;
}
.c,
.e,
.f {
fill: none;
}
.d {
fill: #010101;
}
.d,
.e,
.f {
stroke-width: 0.5px;
}
.f {
stroke-miterlimit: 10;
}
</style></defs
><path
class="c"
d="M17.41,25.16l-5.68-2.64-8.54,3.97V9.29l8.54-3.97,8.54,3.97,8.54-3.97v11.19M11.73,5.32v17.2M20.27,9.29v5.37"
/><polygon
class="d"
points="18.82 18.76 20.08 23.53 27.92 22.98 28.64 18.64 18.82 18.76"
/><polyline class="e" points="16.45 16.72 18.25 16.74 20.36 24.52 27.94 24.52" /><ellipse
class="f"
cx="21.59"
cy="26.11"
rx=".62"
ry=".57"
/><ellipse class="f" cx="26.63" cy="26.11" rx=".62" ry=".57" /></svg
>
5 changes: 2 additions & 3 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<script>
import { base } from '$app/paths';
import Icon from '@iconify/svelte';
import Logo from '$lib/logo.svelte';
</script>

<div class="flex h-[calc(100dvh)] flex-col bg-base-100 bg-gradient-to-r to-base-300">
<h2 class="text-bold m-5 flex text-xl">
<Icon class="mt-1" icon="tdesign:map-3d" />
storecompanion
<Logo class="-mt-1" />store<span class="font-thin">companion</span>
</h2>
<div class="hero flex-1">
<div class="hero-content text-center">
Expand Down
Binary file modified static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9d79fe7

Please sign in to comment.