+ Let's stay in touch
+ Subscribe to our newsletter for fresh news, seasonal arrivals and delicious recipes.
+
+
+ )
+}
+
+export default HomeSubscribe
diff --git a/src/components/modules/home/index.ts b/src/components/modules/home/index.ts
index e65d4e0c1..98afbe092 100644
--- a/src/components/modules/home/index.ts
+++ b/src/components/modules/home/index.ts
@@ -1,2 +1,3 @@
export { default as HomeBanner } from './HomeBanner/HomeBanner'
export { default as HomeCTA } from './HomeCTA/HomeCTA'
+export { default as HomeSubscribe } from './HomeSubscribe/HomeSubscribe'
diff --git a/src/styles/_utilities.scss b/src/styles/_utilities.scss
index e75d344fe..1a6661bec 100644
--- a/src/styles/_utilities.scss
+++ b/src/styles/_utilities.scss
@@ -84,6 +84,10 @@
.spacing-horizontal {
padding-left: 2rem;
padding-right: 2rem;
+ @screen md {
+ padding-left: 6.4rem;
+ padding-right: 6.4rem;
+ }
@screen md {
padding-left: 11.2rem;
padding-right: 11.2rem;
@@ -92,6 +96,10 @@
.spacing-horizontal-left {
padding-left: 2rem;
@screen md {
+ padding-left: 6.4rem;
+ padding-right: 6.4rem;
+ }
+ @screen lg {
padding-left: 11.2rem;
padding-right: 11.2rem;
}
diff --git a/src/utils/type.utils.ts b/src/utils/type.utils.ts
new file mode 100644
index 000000000..e9dde87b1
--- /dev/null
+++ b/src/utils/type.utils.ts
@@ -0,0 +1,3 @@
+export interface CustomInputCommon extends HTMLInputElement {
+ getValue: () => string | number
+}