feat: add landing page

This commit is contained in:
BennyKok
2023-12-16 17:14:04 +08:00
parent 21a17cb753
commit ef050b5e55
17 changed files with 851 additions and 90 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ export const columns: ColumnDef<Payment>[] = [
},
cell: ({ row }) => {
return (
<a className="hover:underline" href={`/workflow/${row.original.id}`}>
<a className="hover:underline" href={`/workflows/${row.original.id}`}>
{row.getValue("email")}
</a>
);