diff --git a/donutshop_ecommerce/public/cup.png b/donutshop_ecommerce/public/cup.png new file mode 100644 index 0000000..629993f Binary files /dev/null and b/donutshop_ecommerce/public/cup.png differ diff --git a/donutshop_ecommerce/src/app/globals.css b/donutshop_ecommerce/src/app/globals.css index bb810fe..4e09f29 100644 --- a/donutshop_ecommerce/src/app/globals.css +++ b/donutshop_ecommerce/src/app/globals.css @@ -6,21 +6,23 @@ body{ background-color: #FDE2DE; overflow-x: hidden; } - +.text-stroke-3 { + text-shadow: -1px -1px 0 #95743D, 2px -1px 0 #95743D, -1px 2px 0 #95743D, 1px 1px 0 #95743D; +} /*== logo ==*/ .circle{ animation: animate 17.5s linear infinite; } @keyframes animate { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(360deg); - } + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } } .letter { - transform-origin: 0 50px; + transform-origin: 0 50px; } @media (min-width: 765px){ diff --git a/donutshop_ecommerce/src/app/page.js b/donutshop_ecommerce/src/app/page.js index 9d12e6e..0e423fc 100644 --- a/donutshop_ecommerce/src/app/page.js +++ b/donutshop_ecommerce/src/app/page.js @@ -1,5 +1,6 @@ import Header from '@/components/layout/Header' import Hero from '@/components/layout/Hero' +import HomeMenu from '@/components/layout/HomeMenu' import React from 'react' const page = () => { @@ -7,6 +8,7 @@ const page = () => { <>
+ ) } diff --git a/donutshop_ecommerce/src/components/layout/Hero.js b/donutshop_ecommerce/src/components/layout/Hero.js index 4c1546a..51ed96a 100644 --- a/donutshop_ecommerce/src/components/layout/Hero.js +++ b/donutshop_ecommerce/src/components/layout/Hero.js @@ -17,24 +17,25 @@ const Hero = () => { return ( <>
-
+
-

Donuts worry about things! Donuts worry about things! Donuts worry about things!

+

Donuts worry about things! Donuts worry about things! Donuts worry about things!

-
+

Donuts worry about things! Donuts worry about things! Donuts worry about things!

-
+
-

Donuts worry about things! Donuts worry about things! Donuts worry about things!

+

Donuts worry about things! Donuts worry about things! Donuts worry about things!

-
- home_donut -

Puffy Dough, we bake our donuts fresh everyday using high-quality ingredients without artificial additives.

+
+ home_donut + home_donut +

We bake our donuts fresh everyday using high-quality ingredients without artificial additives.

Order
diff --git a/donutshop_ecommerce/src/components/layout/HomeMenu.js b/donutshop_ecommerce/src/components/layout/HomeMenu.js new file mode 100644 index 0000000..d449944 --- /dev/null +++ b/donutshop_ecommerce/src/components/layout/HomeMenu.js @@ -0,0 +1,9 @@ +import React from 'react' + +const HomeMenu = () => { + return ( +
HomeMenu
+ ) +} + +export default HomeMenu \ No newline at end of file