diff --git a/src/app/[pohid]/[chain]/[request]/page.tsx b/src/app/[pohid]/[chain]/[request]/page.tsx index d0c8db7..b29d834 100644 --- a/src/app/[pohid]/[chain]/[request]/page.tsx +++ b/src/app/[pohid]/[chain]/[request]/page.tsx @@ -29,6 +29,7 @@ import { Address } from "viem"; import ActionBar from "./ActionBar"; import Evidence from "./Evidence"; import Info from "./Info"; +import DocumentIcon from "components/DocumentIcon"; interface PageProps { params: { pohid: string; chain: string; request: string }; @@ -435,31 +436,11 @@ export default async function Request({ params }: PageProps) {
+
- warning -   Policy in force at submission -
- - This is the policy that was in effect when this - submission was made. Why is this important? Policies - may change over time, and it's crucial to know the - policy that was in force at the time of a submission - before challenging or removing a profile. If you - challenge this submission, this version of the policy - will be enforced by Kleros jurors if the case goes to - arbitration. Also, if you revoke this profile citing - “incorrect submission,” but the submission complied - with this policy, your revocation request may be - rejected, and you may lose your deposit. - -
+ Relevant Policy
diff --git a/src/components/DocumentIcon.tsx b/src/components/DocumentIcon.tsx new file mode 100644 index 0000000..043251c --- /dev/null +++ b/src/components/DocumentIcon.tsx @@ -0,0 +1,8 @@ +"use client"; + +import React from "react"; +import NoteMajorIcon from "icons/NoteMajor.svg"; + +export default function DocumentIcon(props: React.SVGProps) { + return ; +} \ No newline at end of file