diff --git a/src/lib/Footer.svelte b/src/lib/Footer.svelte
index e8183a8..f3842ad 100644
--- a/src/lib/Footer.svelte
+++ b/src/lib/Footer.svelte
@@ -4,6 +4,7 @@
@@ -45,6 +47,13 @@
text-align: center;
}
+ .badge {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ }
+
img {
width: 270px;
background: var(--accent-primary);
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
index 49c509e..036740e 100644
--- a/src/routes/index.svelte
+++ b/src/routes/index.svelte
@@ -2,6 +2,7 @@
import SvelteSeo from "svelte-seo";
let description: string = "7 idiots, 2 OVH vpses, a BuyVM 1024 Slice, a Sun server and a Hitachi Compute Rack.";
+ import IconMoneyBill from "~icons/fa6-solid/money-bill";
Explore our services
Explore our projects
+ Donate
@@ -59,10 +61,13 @@
a {
text-decoration: none;
background-color: var(--accent-primary);
- padding: 1rem;
+ padding: 8px 1em 8px 1em;
color: var(--primary);
border-radius: 10px;
transition: filter .25s;
+ display: flex;
+ align-items: center;
+ gap: 4px;
}
a:hover {