Skip to content

Commit

Permalink
feat: add to act link
Browse files Browse the repository at this point in the history
Thomas Catinaud Taris committed May 22, 2024
1 parent 206b104 commit bc84341
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -17,6 +17,8 @@ import IntroBlock from "@/components/IntroBlock";
import JoinBlock from "@/components/JoinBlock";

import { fetchData } from "@/pages/api/chart";
import PrimaryButton from "@/components/buttons/PrimaryButton";

Check warning on line 20 in src/app/page.tsx

GitHub Actions / ⬣ ESLint, ʦ TypeScript, 💅 Prettier, and 🃏 Test

'PrimaryButton' is defined but never used
import Link from "next/link";

const HomePage = () => {
return (
@@ -220,6 +222,14 @@ const BusinessSection = () => {
<div className="flex md:justify-center min-h-[450px] overflow-y-auto bg-white">
<Plot data={plot.data} layout={plot.layout} />
</div>
<div className="flex justify-center">
<Link
className="inline-flex gap-4 mt-6 lg:mt-12 p-4 lg:px-10 lg:text-xl text-red1 font-secondary uppercase rounded-md tracking-widest font-black border-2 border-red1 hover:bg-red1 hover:text-darkblue1"
href="/to-act"
>
On agit
</Link>
</div>
</div>
</section>
);

0 comments on commit bc84341

Please sign in to comment.