diff --git a/packages/website/components/gateway.js b/packages/website/components/gateway.js index 671619e..c60b66b 100644 --- a/packages/website/components/gateway.js +++ b/packages/website/components/gateway.js @@ -11,21 +11,21 @@ export default function Gateway() { } return ( -
+
-
+

The NFT.Storage Gateway

-

+

The NFT.Storage gateway is optimized for NFT content stored on IPFS, and is especially fast if that content is stored on NFT.Storage. Plug your NFT's content ID (CID) below to try it out.

-
- +
+ https://nftstorage.link/ipfs/ setCid(e.target.value)} value={cid} - className="truncate flex-1 min-w-0 block w-full px-3 py-3 rounded sm:rounded-none sm:rounded-r-md sm:text-sm md:text-lg border-2 border-black text-black placeholder:text-gray-500 focus:ring-indigo-500 focus:border-indigo-500" + className="truncate flex-1 min-w-0 block w-full px-3 py-3 rounded sm:rounded-none sm:rounded-r-md md:text-lg border-2 border-black text-black placeholder:text-gray-500 focus:ring-blue focus:border-blue" placeholder="cid..." />
-
-
-
-
+
+

+ Gateway at a Glance +

+
+
+
2-3x
-
- Faster than other public IPFS Gateways for avg. NFT reads +
+ Faster than other public IPFS Gateways for average NFT reads
-
-
+
+
1PiB+
-
+
Served per month
-
-
+
+
270+
-
+
Points of Presence
diff --git a/packages/website/components/hero.js b/packages/website/components/hero.js index 673c991..564fbb2 100644 --- a/packages/website/components/hero.js +++ b/packages/website/components/hero.js @@ -3,8 +3,8 @@ import Img from '../components/cloudflareImage' export default function Hero() { return (
-
- diff --git a/packages/website/components/superhot.js b/packages/website/components/superhot.js index 755760a..1e59fce 100644 --- a/packages/website/components/superhot.js +++ b/packages/website/components/superhot.js @@ -27,7 +27,7 @@ export default function Superhot() {
-
+
API for artists and collectors to perma-cache their - collections.{' '} - - View API Docs - + collections.

@@ -94,7 +88,7 @@ export default function Superhot() { htmlFor="first-name" className="block text-sm font-semibold text-black" > - First name + First name*
@@ -112,15 +107,16 @@ export default function Superhot() { htmlFor="last-name" className="block text-sm font-semibold text-black" > - Last name + Last name*
@@ -130,7 +126,8 @@ export default function Superhot() { htmlFor="email" className="block text-sm font-semibold text-black" > - Email address + Email address (signed up in nft.storage) + *
@@ -156,7 +154,7 @@ export default function Superhot() { name="size" type="text" placeholder="10,000" - className="px-2 py-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full border-black border-2 rounded-md" + className="px-2 py-1 focus:ring-indigo-500 focus:border-blue block w-full border-black border-2 rounded-md" />
@@ -173,7 +171,7 @@ export default function Superhot() { name="org" type="text" placeholder="Acme Corp." - className="px-2 py-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full border-black border-2 rounded-md" + className="px-2 py-1 focus:ring-indigo-500 focus:border-blue block w-full border-black border-2 rounded-md" />
@@ -190,14 +188,14 @@ export default function Superhot() { name="title" type="text" placeholder="Engineer" - className="px-2 py-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full border-black border-2 rounded-md" + className="px-2 py-1 focus:ring-indigo-500 focus:border-blue block w-full border-black border-2 rounded-md" />
diff --git a/packages/website/pages/index.js b/packages/website/pages/index.js index 96b2bb2..ac0fcf6 100644 --- a/packages/website/pages/index.js +++ b/packages/website/pages/index.js @@ -32,15 +32,13 @@ export default function Home() { diff --git a/packages/website/styles/globals.css b/packages/website/styles/globals.css index ad046d4..edad419 100644 --- a/packages/website/styles/globals.css +++ b/packages/website/styles/globals.css @@ -93,3 +93,22 @@ a { .kwes-form .kw-border-error { border-width: 2px !important; } + +.kw-field-error-message { + font-size: 12px; +} + +.btn { + box-shadow: 0 0px 0 0px #0a854c, 0 0px 0 0px #ee4116, 0 0px 0 0px #e2ba36; + transition: all 0.2s ease-in-out; +} + +.btn:hover { + background-color: #47aed7; + box-shadow: 0 3px 0 0px #0a854c, 0 6px 0 0px #ee4116, 0 9px 0 0px #e2ba36; +} + +.btn:active { + box-shadow: inset 0 0 0 2px #000, 0 3px 0 0px #0a854c, 0 6px 0 0px #ee4116, + 0 9px 0 0px #e2ba36; +}