diff --git a/src/components/Fourth/fourth.tsx b/src/components/Fourth/fourth.tsx index 74f936d..8fd6927 100644 --- a/src/components/Fourth/fourth.tsx +++ b/src/components/Fourth/fourth.tsx @@ -1,6 +1,7 @@ import React from "react"; import style from "./fourth.module.css"; import Image from "next/image"; +import { slide as Slide } from "../Slides/slide"; export const Fourth = () => { return ( @@ -8,9 +9,9 @@ export const Fourth = () => {
-
-
-
+
+
+
@@ -21,7 +22,7 @@ export const Fourth = () => {
- image here { take our word for it – read what our clients have to say about their experience partnering with us.
-
-
-
-
- image here -
-
-

- John Doe
- Marketing Director, Company A -

-
-
- -
-
-

- Working with Winfluence was a game-changer for us. Their - innovative digital strategies propelled our brand to new - heights, resulting in a 30% increase in website traffic -

-
-
-
-
+ ); diff --git a/src/components/Slides/slide.tsx b/src/components/Slides/slide.tsx new file mode 100644 index 0000000..e3241f6 --- /dev/null +++ b/src/components/Slides/slide.tsx @@ -0,0 +1,42 @@ +import style from "../Fourth/fourth.module.css"; +import Image from "next/image"; + +import React from "react"; + +export const slide = () => { + return ( + <> +
+
+
+
+ image here +
+
+

+ John Doe
+ Marketing Director, Company A +

+
+
+ +
+
+

+ Working with Winfluence was a game-changer for us. Their + innovative digital strategies propelled our brand to new + heights, resulting in a 30% increase in website traffic +

+
+
+
+
+ + ); +};