Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
- name: Install Packages
run: npm ci
- name: Check Lint
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# Gallery
# TradeTrust Gallery

This repository showcases a collection of TradeTrust-supported documents, including Verifiable Documents and Electronic Transfer Records. Each document features QR codes that link to [ref.tradetrust.io](https://ref.tradetrust.io) for easy verification.

The gallery includes common document types such as Certificate of Origin, Invoice, Electronic Promissory Note, Electronic Bill of Lading, and Warehouse Receipt. Documents are presented in different states (e.g., default, redacted, revoked, expired, operative, inoperative) to demonstrate real-world scenarios.

**Note:** These documents are for demonstration and testing only. They contain placeholder data and should not be used in production or as transaction templates.
15 changes: 13 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Gallery</title>
<meta charset="utf-8" />
<title>TradeTrust - Gallery</title>
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<style>
@import url("https://fonts.googleapis.com/css?family=Ubuntu:var(--h1-font-weight)");
</style>
<link href="tailwind.css" rel="stylesheet" />
<link href="tailwind.css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
Expand Down
Loading