diff --git a/frontend/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx index a1e9ae9..674a448 100644 --- a/frontend/src/app/dashboard/page.tsx +++ b/frontend/src/app/dashboard/page.tsx @@ -3,6 +3,7 @@ import { Trophy, ThumbsUp, PlusIcon, Dot } from "lucide-react"; import Image from "next/image"; import { cn } from "@/lib/utils"; import { StatusPill } from "@/components/dashboard/StatusPill"; +import Link from "next/link"; const page = () => { const info = [ @@ -28,6 +29,7 @@ const page = () => { ]; type Field = { + id: number; election: string; voters: string; candidates: string; @@ -36,6 +38,7 @@ const page = () => { }; const data: Field[] = [ { + id: 1, election: "SRC President 2024", voters: "25", candidates: "3", @@ -43,6 +46,7 @@ const page = () => { winner: "Undetermined", }, { + id: 1, election: "SRC President 2024", voters: "25", candidates: "3", @@ -50,6 +54,7 @@ const page = () => { winner: "Undetermined", }, { + id: 1, election: "SRC President 2024", voters: "25", candidates: "3", @@ -57,6 +62,7 @@ const page = () => { winner: "Undetermined", }, { + id: 1, election: "SRC President 2024", voters: "25", candidates: "3", @@ -97,9 +103,12 @@ const page = () => { />
Elections
-Create election