diff --git a/src/assets/compressed-images/background.avif b/src/assets/compressed-images/background.avif
new file mode 100644
index 0000000..70acab9
Binary files /dev/null and b/src/assets/compressed-images/background.avif differ
diff --git a/src/assets/compressed-images/background.webp b/src/assets/compressed-images/background.webp
new file mode 100644
index 0000000..5ab4880
Binary files /dev/null and b/src/assets/compressed-images/background.webp differ
diff --git a/src/assets/compressed-images/fwt.avif b/src/assets/compressed-images/fwt.avif
new file mode 100644
index 0000000..35f56c3
Binary files /dev/null and b/src/assets/compressed-images/fwt.avif differ
diff --git a/src/assets/compressed-images/fwt.webp b/src/assets/compressed-images/fwt.webp
new file mode 100644
index 0000000..32033be
Binary files /dev/null and b/src/assets/compressed-images/fwt.webp differ
diff --git a/src/assets/compressed-images/sample.avif b/src/assets/compressed-images/sample.avif
new file mode 100644
index 0000000..78c62db
Binary files /dev/null and b/src/assets/compressed-images/sample.avif differ
diff --git a/src/assets/compressed-images/sample.webp b/src/assets/compressed-images/sample.webp
new file mode 100644
index 0000000..0cb2279
Binary files /dev/null and b/src/assets/compressed-images/sample.webp differ
diff --git a/src/assets/images/background.png b/src/assets/images/background.png
new file mode 100644
index 0000000..98e7996
Binary files /dev/null and b/src/assets/images/background.png differ
diff --git a/src/assets/images/fwt.png b/src/assets/images/fwt.png
new file mode 100644
index 0000000..4d1e48b
Binary files /dev/null and b/src/assets/images/fwt.png differ
diff --git a/src/assets/images/sample.avif b/src/assets/images/sample.avif
deleted file mode 100644
index 4fdb787..0000000
Binary files a/src/assets/images/sample.avif and /dev/null differ
diff --git a/src/assets/images/sample.png b/src/assets/images/sample.png
new file mode 100644
index 0000000..a8f6f60
Binary files /dev/null and b/src/assets/images/sample.png differ
diff --git a/src/builtin-components/Button/Button.sass b/src/builtin-components/Button/Button.sass
index 0e01f21..b2a4d46 100644
--- a/src/builtin-components/Button/Button.sass
+++ b/src/builtin-components/Button/Button.sass
@@ -4,13 +4,13 @@
.button
background: vars.$primaryColor
border: none
- border-radius: 16px
+ border-radius: 32px
color: white
padding: 0.5rem 1.25rem
text-align: center
text-decoration: none
display: inline-block
- font-size: 0.75rem
+ font-size: 1rem
font-weight: 700
cursor: pointer
transition: all 0.2s ease-out
diff --git a/src/builtin-components/Button/Button.tsx b/src/builtin-components/Button/Button.tsx
index 33adc78..5a4611a 100644
--- a/src/builtin-components/Button/Button.tsx
+++ b/src/builtin-components/Button/Button.tsx
@@ -2,22 +2,25 @@ import './Button.sass'
import { Show } from 'solid-js'
interface Props {
- label?: string;
- to?: string;
- onClick?: () => void;
+ label?: string
+ to?: string
+ onClick?: () => void
}
export default (props: Props) => {
- return
- <>
-