From 3114ab1b9ce3efb2e47f97a1dcd5229cf596307e Mon Sep 17 00:00:00 2001 From: 0xJonaseb11 Date: Thu, 31 Oct 2024 14:26:43 +0200 Subject: [PATCH] update fixes#build#01 --- packages/nextjs/app/(app)/account/page.tsx | 1 + packages/nextjs/app/(app)/dashboard/page.tsx | 6 ++++-- packages/nextjs/components/dashboard/ClaimRoleCard.tsx | 2 ++ packages/nextjs/components/dashboard/DataRegistry.tsx | 1 + 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/nextjs/app/(app)/account/page.tsx b/packages/nextjs/app/(app)/account/page.tsx index c301968..3f8896e 100644 --- a/packages/nextjs/app/(app)/account/page.tsx +++ b/packages/nextjs/app/(app)/account/page.tsx @@ -6,6 +6,7 @@ export const metadata: Metadata = { title: "Account" }; export default function AccountPage() { return (
+

welcome

); diff --git a/packages/nextjs/app/(app)/dashboard/page.tsx b/packages/nextjs/app/(app)/dashboard/page.tsx index c0fc95f..b382524 100644 --- a/packages/nextjs/app/(app)/dashboard/page.tsx +++ b/packages/nextjs/app/(app)/dashboard/page.tsx @@ -10,7 +10,10 @@ export const metadata: Metadata = { export default function DashboardPage() { return ( -
+
+
+

Welcome, Partner! Start by claiming a role!🤝

+
@@ -18,4 +21,3 @@ export default function DashboardPage() {
); } - diff --git a/packages/nextjs/components/dashboard/ClaimRoleCard.tsx b/packages/nextjs/components/dashboard/ClaimRoleCard.tsx index 7a8567b..3543967 100644 --- a/packages/nextjs/components/dashboard/ClaimRoleCard.tsx +++ b/packages/nextjs/components/dashboard/ClaimRoleCard.tsx @@ -69,7 +69,9 @@ export const ClaimRoleCard: React.FC = () => { }; return ( +
+

Welcome, Partner! Start by claiming a role!🤝

Congratulations!

Claim a role that will be used to identify you on the Stoneproof platform. diff --git a/packages/nextjs/components/dashboard/DataRegistry.tsx b/packages/nextjs/components/dashboard/DataRegistry.tsx index 4fb8b5c..77c112e 100644 --- a/packages/nextjs/components/dashboard/DataRegistry.tsx +++ b/packages/nextjs/components/dashboard/DataRegistry.tsx @@ -4,6 +4,7 @@ import { useState, useEffect } from "react"; import { ethers } from "ethers"; import DataRegistryABI from "../../contracts/DataRegistry.json"; + type DataRecord = { id: string; description: string;