summaryrefslogtreecommitdiff
path: root/src/components/widgets
diff options
context:
space:
mode:
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>
))
) : (