-
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.
Merge pull request #19 from Lupleg/Vikram
Feature component added
- Loading branch information
Showing
6 changed files
with
734 additions
and
27 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
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,82 @@ | ||
import React from "react"; | ||
import Marquee from "react-fast-marquee"; | ||
function Slider() { | ||
return ( | ||
<div className="sm:px-8 md:px-16 lg:px-24 lg:mx-8 xl:px-32 xl:mx-20 mb-24"> | ||
<div className="flex flex-col md:gap-10 sm:gap-8 lg:gap-16"> | ||
<div className="md:text-xl lg:text-2xl xl:text-4xl font-semibold"> | ||
<h2 className="text-center"> | ||
8,000+ businesses choose Front for every customer conversation — | ||
from simple to complex | ||
</h2> | ||
</div> | ||
<div> | ||
<Marquee pauseOnHover="true" speed={35}> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/sennder.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/WizardPins.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/Branch.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/Carvana.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/ClickUp.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/Culture-Amp.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/Dropbox.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/GoDaddy.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/Hootsuite.svg" | ||
alt="" | ||
/> | ||
</div> | ||
<div className="size-2/4"> | ||
<img | ||
src="https://front.com/assets/pages/homepage-v2/logos/social-proof/Lydia.svg" | ||
alt="" | ||
/> | ||
</div> | ||
</Marquee> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Slider; |
Oops, something went wrong.