Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PhongzHo committed Dec 5, 2023
1 parent 86b2d95 commit 7ece60d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion node_modules/.cache/.eslintcache

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions src/components/Ticker.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { logotext, aramith, helix, pba, logoAlliex } from "../assets";

const Ticker = () => {
return (
<div className=" bg-black px-6 flex space-x-28 group">
<div className="flex animate-loop-scroll space-x-28 group-hover:paused">
<img loading="lazy" src={aramith} class="max-w-none" alt="logo-aramith-billiards" />
<img loading="lazy" src={helix} class="max-w-none" alt="logo-helix-billiards" />
<img loading="lazy" src={pba} class="max-w-none" alt="logo-pba-billiards" />
<img loading="lazy" src={logoAlliex} class="max-w-none" alt="logo-Alliex-billiards" />
<img loading="lazy" src={logotext} class="max-w-none" alt="logo-lab-billiards" />
</div>
<div className="flex animate-loop-scroll space-x-28 group-hover:paused">
<img loading="lazy" src={aramith} class="max-w-none" alt="logo-aramith-billiards" />
<img loading="lazy" src={helix} class="max-w-none" alt="logo-helix-billiards" />
<img loading="lazy" src={pba} class="max-w-none" alt="logo-pba-billiards" />
<img loading="lazy" src={logoAlliex} class="max-w-none" alt="logo-Alliex-billiards" />
<img loading="lazy" src={logotext} class="max-w-none" alt="logo-lab-billiards" />
</div>
</div>
);
};

export default Ticker;

0 comments on commit 7ece60d

Please sign in to comment.