diff --git a/donutshop_ecommerce/src/app/page.js b/donutshop_ecommerce/src/app/page.js
index f857980..a19ae18 100644
--- a/donutshop_ecommerce/src/app/page.js
+++ b/donutshop_ecommerce/src/app/page.js
@@ -1,4 +1,5 @@
"use client"
+import HomeCustom from '@/components/layout/HomeCustom'
import Header from '@/components/layout/Header'
import Hero from '@/components/layout/Hero'
import HomeCreateBox from '@/components/layout/HomeCreateBox'
@@ -6,6 +7,7 @@ import HomeMenu from '@/components/layout/HomeMenu'
import HomeMonthly from '@/components/layout/HomeMonthly'
import React from 'react'
import { ParallaxProvider } from "react-scroll-parallax";
+import Footer from '@/components/layout/Footer'
const page = () => {
return (
@@ -15,6 +17,8 @@ const page = () => {
+
+
)
diff --git a/donutshop_ecommerce/src/components/layout/Footer.js b/donutshop_ecommerce/src/components/layout/Footer.js
new file mode 100644
index 0000000..de95573
--- /dev/null
+++ b/donutshop_ecommerce/src/components/layout/Footer.js
@@ -0,0 +1,51 @@
+import React from 'react'
+import { GiCoffeeBeans } from "react-icons/gi";
+
+const Footer = () => {
+ return (
+
+
+
+
Stay up to date
+
+
+
+
+
+
+
+
Info
+
+
Shipping + Delivery
+
Privacy Policy
+
FAQs
+
+
+
+
+
Learn
+
+
Gift Cards
+
Loyalty Program
+
Press + Media
+
+
+
+
+
Contact
+
+
Contact Us
+
Instagram
+
Facebook
+
+
+
+
+
+
© Copyright Puffy Dough 2024
+
+
+ )
+}
+
+export default Footer
\ No newline at end of file
diff --git a/donutshop_ecommerce/src/components/layout/HomeCustom.js b/donutshop_ecommerce/src/components/layout/HomeCustom.js
new file mode 100644
index 0000000..a32621a
--- /dev/null
+++ b/donutshop_ecommerce/src/components/layout/HomeCustom.js
@@ -0,0 +1,24 @@
+import React from 'react'
+import { Parallax } from "react-scroll-parallax";
+import { GoArrowRight } from "react-icons/go";
+
+
+const HomeCustom = () => {
+
+ return (
+
+
+
+
Are you looking for
+
something more custom?
+
+
+
+
+
+
+
+ )
+}
+
+export default HomeCustom
\ No newline at end of file
diff --git a/donutshop_ecommerce/src/components/layout/HomeMenu.js b/donutshop_ecommerce/src/components/layout/HomeMenu.js
index b5fc1e7..82c62a7 100644
--- a/donutshop_ecommerce/src/components/layout/HomeMenu.js
+++ b/donutshop_ecommerce/src/components/layout/HomeMenu.js
@@ -50,6 +50,7 @@ const HomeDrink = () => {
]
};
+
return (
diff --git a/donutshop_ecommerce/src/components/layout/HomeMonthly.js b/donutshop_ecommerce/src/components/layout/HomeMonthly.js
index 7cd5ff8..6002f87 100644
--- a/donutshop_ecommerce/src/components/layout/HomeMonthly.js
+++ b/donutshop_ecommerce/src/components/layout/HomeMonthly.js
@@ -13,8 +13,8 @@ const HomeMonthly = () => {
slidesToShow: 3,
slidesToScroll: 1,
autoplay: true,
- speed: 2000,
- autoplaySpeed: 2000,
+ speed: 3000,
+ autoplaySpeed: 3000,
cssEase: "linear",
responsive: [
{
@@ -68,6 +68,9 @@ const HomeMonthly = () => {
+
)
}