Skip to content

Commit

Permalink
feat: create the fund details page
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelVR17 committed Sep 26, 2024
1 parent d2c77a6 commit 732f18b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion frontend/gostarkme-web/app/fund/[fundId]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import Fund from "@/components/modules/Fund/Fund";
import Bounded from "@/components/ui/Bounded";
import Divider from "@/components/ui/Divider";

const FundDetailsPage = async ({ params }: { params: { fundId: string } }) => {
return (
<>
<h1 className="text-4xl mb-3 font-black">{params.fundId}</h1>
<Bounded className="px-60 text-lg">
<h2 className="font-bold">User's fund - {params.fundId}</h2>
<Divider />
<Fund message="I need some Starks to finish my project."></Fund>
</Bounded>
</>
);
};
Expand Down

0 comments on commit 732f18b

Please sign in to comment.