summaryrefslogtreecommitdiff
path: root/src/components/widgets
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-22 18:52:54 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-22 18:52:54 +0300
commita730e05645128224be7b49b36bd15f4f81303caa (patch)
tree7659aa1685c3d37240230a520d717a0b1e5a5fb7 /src/components/widgets
parentc949098e81248cd05da48d6ec6ccc033bd1d0011 (diff)
Buttons fix
Diffstat (limited to 'src/components/widgets')
-rw-r--r--src/components/widgets/HeroBackground.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/widgets/HeroBackground.astro b/src/components/widgets/HeroBackground.astro
index b5ea748..904bc23 100644
--- a/src/components/widgets/HeroBackground.astro
+++ b/src/components/widgets/HeroBackground.astro
@@ -1,6 +1,6 @@
---
import Image from '~/components/common/Image.astro';
-import Button from '~/components/ui/Button.astro';
+import HeroButton from '~/components/ui/HeroButton.astro';
import type { Hero as Props } from '~/types';
@@ -105,7 +105,7 @@ const {
{Array.isArray(actions) ? (
actions.map((action) => (
<div class="flex w-full sm:w-auto">
- <Button {...(action || {})} class="w-full sm:mb-0" />
+ <HeroButton {...(action || {})} class="w-full sm:mb-0" />
</div>
))
) : (