diff --git a/components/FooterSection.tsx b/components/FooterSection.tsx new file mode 100644 index 0000000..dd4ede7 --- /dev/null +++ b/components/FooterSection.tsx @@ -0,0 +1,187 @@ +import MangoPill from '../components/MangoPill' +import Button from './Button' + +const FooterSection = () => { + return ( +
+
+
+
+

+ Want product news and updates?{' '} + + Sign up for our newsletter. + +

+ +
+ + +
+ +
+
+
+

+ We promise to never spam and only send alpha. +

+
+
+
+ + +
+
+ ) +} + +export default FooterSection diff --git a/components/MangoPill.tsx b/components/MangoPill.tsx new file mode 100644 index 0000000..530aa3d --- /dev/null +++ b/components/MangoPill.tsx @@ -0,0 +1,14 @@ +const MangoPill = () => { + return ( +
+

+ Soon +

+
+ ) +} + +export default MangoPill diff --git a/components/MangoSale.tsx b/components/MangoSale.tsx new file mode 100644 index 0000000..64aaab1 --- /dev/null +++ b/components/MangoSale.tsx @@ -0,0 +1,14 @@ +const MangoSale = () => { + return ( +
+

+ Sale +

+
+ ) +} + +export default MangoSale