diff --git a/resources/views/components/button.blade.php b/resources/views/components/button.blade.php new file mode 100644 index 0000000..5e84e25 --- /dev/null +++ b/resources/views/components/button.blade.php @@ -0,0 +1,11 @@ +@props(['variant' => '']) +@php +$variants = [ + 'neutral' => 'bg-primary-600 text-white' +]; + +$variantClass = $variants[$variant] ?? ''; +@endphp + diff --git a/resources/views/components/get-in-touch.blade.php b/resources/views/components/get-in-touch.blade.php new file mode 100644 index 0000000..89459df --- /dev/null +++ b/resources/views/components/get-in-touch.blade.php @@ -0,0 +1,65 @@ +
+

Get In Touch

+

+ Have questions? We'd love it hear from you. Send us a message and we'll respond
+ as soon as possible. +

+ +
+ + +
+ + + + + Send Message + +
+ + +
+

Contact Information

+

+ Reach out to us through any of these channels. We're here to help
+ you make the most of the DealHub. +

+
+
+
+
+ +
+
+

Email

+

support@dealhub.com

+
+
+ +
+
+ +
+
+

Phone

+

+1 (555) 123-4567

+
+
+ +
+
+ +
+
+

Email

+

+ 124, Business St, Suite 700
+ San Francisco, CA 907612 +

+
+
+
+
+
+
+
diff --git a/resources/views/components/input.blade.php b/resources/views/components/input.blade.php new file mode 100644 index 0000000..6300e49 --- /dev/null +++ b/resources/views/components/input.blade.php @@ -0,0 +1,10 @@ +@props(['label' => '', 'name' => '', 'placeholder' => '', 'type' => 'text']) +@if($label !== '') +
+ + + + +
+@endif diff --git a/resources/views/components/textarea.blade.php b/resources/views/components/textarea.blade.php new file mode 100644 index 0000000..dd76c31 --- /dev/null +++ b/resources/views/components/textarea.blade.php @@ -0,0 +1,9 @@ +@props(['label' => '', 'name' => '', 'placeholder' => '']) +@if($label !== '') +
+ + + +
+@endif diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php index 179cbea..071a34a 100644 --- a/resources/views/home.blade.php +++ b/resources/views/home.blade.php @@ -3,4 +3,5 @@ +