+ {{ $text }}
-$defaultClasses = 'inline-flex border border-black active:bg-black active:text-white ';
-
-$types = [
- 'primary' => 'text-white bg-black hover:bg-white hover:text-black',
- 'outline' => 'text-black bg-transparent hover:bg-black hover:text-white',
-];
-
-$sizes = [
- 'xs' => 'px-4 py-2 text-xs',
- 'sm' => 'px-4 py-2 text-sm',
- 'base' => 'px-6 py-3 text-base',
- 'lg' => 'px-8 py-4 text-lg',
-];
-@endphp
-
-<{{ $element }}
- class="{{ $defaultClasses }} {{ $types[$attributes->get('type', 'primary')] }} {{ $sizes[$attributes->get('size', 'base')] }} {{ $attributes->get('class') }}"
-
- @foreach ($attributes->except(['class', 'type', 'size', 'element']) as $key => $value)
- {{ $key }}="{{ $value }}"
- @endforeach
->
- {{ $slot }}
-{{ $element }}>
+
+ @include('partials.svg.arrow')
+
+
\ No newline at end of file
diff --git a/resources/views/components/image.blade.php b/resources/views/components/image.blade.php
new file mode 100644
index 0000000..1c4e62f
--- /dev/null
+++ b/resources/views/components/image.blade.php
@@ -0,0 +1,10 @@
+@if ($container)
+
+ @if ($showEyebrow && !empty($eyebrow))
+
{{ $eyebrow }}
+ @endif
+
+ @if ($showHeading && !empty($heading))
+
{{ $heading }}
+ @endif
+
+ @if ($showText && !empty($text))
+
{{ $text }}
+ @endif
+
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php
index b37b4ab..44d0479 100644
--- a/resources/views/layouts/app.blade.php
+++ b/resources/views/layouts/app.blade.php
@@ -18,7 +18,7 @@
@include('sections.header')
-