-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd2d45c
commit 7b05711
Showing
2 changed files
with
48 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import style from "../Fourth/fourth.module.css"; | ||
import Image from "next/image"; | ||
|
||
import React from "react"; | ||
|
||
export const slide = () => { | ||
return ( | ||
<> | ||
<div className={style.fourthfour}> | ||
<div className={style.fourthfourwrapper}> | ||
<div className={style.fourtop}> | ||
<div className={style.fourtopimage}> | ||
<Image | ||
className={style.image1} | ||
src="/client.png" | ||
alt="image here" | ||
width={200} | ||
height={200} | ||
/> | ||
</div> | ||
<div className={style.fourtoptext}> | ||
<p className={style.fourtoptext}> | ||
John Doe <br /> | ||
Marketing Director, Company A | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div className={style.fourbottom}> | ||
<div className={style.fourbottomwrapper}> | ||
<p className={style.fourbottomtext}> | ||
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 | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; |