probably fix dark mode and add fix hero section

This commit is contained in:
Akis 2022-08-24 19:55:39 +03:00
parent 72e7b7df4d
commit 1102191078
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED
2 changed files with 6 additions and 2 deletions

View File

@ -16,6 +16,7 @@ html {
--grey: #5454547a; --grey: #5454547a;
--alt: #333; --alt: #333;
--alt-text: #ddd; --alt-text: #ddd;
color-scheme: dark;
} }
html.light { html.light {
@ -26,6 +27,7 @@ html.light {
--grey: #444444; --grey: #444444;
--alt: #ddd; --alt: #ddd;
--alt-text: #333; --alt-text: #333;
color-scheme: light;
} }
body { body {

View File

@ -26,12 +26,14 @@
marginTop="7" marginTop="7"
> >
<div class="buttons"> <div class="buttons">
<LinkButton url="/services" title="Explore our services" /> <LinkButton url="/services" title="Explore our services" icon="i-fa6-solid:bell-concierge" />
<LinkButton url="/projects" title="Explore our projects" /> <LinkButton url="/projects" title="Explore our projects" icon="i-fa6-solid:tractor" />
<LinkButton <LinkButton
url="/donate" url="/donate"
icon="i-fa6-solid:money-bill" icon="i-fa6-solid:money-bill"
title="Donate" title="Donate"
bg="#F6C915"
color="#151515"
/> />
</div> </div>
</Hero> </Hero>