We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936d070 commit e4b68f3Copy full SHA for e4b68f3
1 file changed
client/src/pages/home.tsx
@@ -1,3 +1,5 @@
1
+import Link from "next/link";
2
+
3
import { useEvents } from "@/hooks/events";
4
5
import { Button } from "../components/ui/button";
@@ -32,7 +34,9 @@ export default function Home() {
32
34
</CardContent>
33
35
36
<CardFooter className="flex-end flex-row justify-end gap-2">
- <Button>Signup</Button>
37
+ <Button>
38
+ <Link href={`/events/${event.id}`}>View Details</Link>
39
+ </Button>
40
<Button>Signup</Button>
41
</CardFooter>
42
</Card>
0 commit comments