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
6 changes: 3 additions & 3 deletions dapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<link rel="icon" type="image/svg+xml" href="/edrm-mark.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ZDrive</title>
<meta name="description" content="Encrypted file sharing with on-chain access control. Data rooms, due diligence, confidential collaboration — trustlessly." />
<meta name="description" content="Encrypted file sharing with on-chain access control. Data rooms, due diligence, confidential collaboration. Trustlessly." />
<meta property="og:title" content="ZDrive" />
<meta property="og:description" content="Encrypted file sharing with on-chain access control. Data rooms, due diligence, confidential collaboration — trustlessly." />
<meta property="og:description" content="Encrypted file sharing with on-chain access control. Data rooms, due diligence, confidential collaboration. Trustlessly." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/og-image.svg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ZDrive" />
<meta name="twitter:description" content="Encrypted file sharing with on-chain access control. Data rooms, due diligence, confidential collaboration — trustlessly." />
<meta name="twitter:description" content="Encrypted file sharing with on-chain access control. Data rooms, due diligence, confidential collaboration. Trustlessly." />
<meta name="twitter:image" content="/og-image.svg" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R8JYXG1CLC"></script>
<script>
Expand Down
4 changes: 4 additions & 0 deletions dapp/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,10 @@ body {
animation: icon-breathe 3s ease-in-out infinite;
}

.locked-wall__icon.animate-spin {
animation: spin 1s linear infinite;
}

.dark .locked-wall__icon {
filter: drop-shadow(0 0 24px oklch(0.7 0.15 265 / 0.5));
}
Expand Down
2 changes: 1 addition & 1 deletion dapp/src/pages/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const FEATURES = [
icon: Users,
title: "Confidential Collaboration",
description:
"Share data rooms for due diligence, fundraising, or sensitive projects, trustlessly.",
"Share data rooms for due diligence, fundraising, or sensitive projects. Trustlessly.",
},
];

Expand Down
Loading