-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 2.5 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta -->
<title>NFT Artworks</title>
<meta name="description" content="Modern NFT gallery powered by IPFS — upload images via Pinata, generate ERC-721 metadata, and explore a fully decentralized, cross-device gallery." />
<meta name="author" content="Ralph Rosael" />
<meta name="theme-color" content="#080b12" />
<meta name="keywords" content="NFT, IPFS, Web3, NFT gallery, Pinata, blockchain, digital art, ERC-721" />
<!-- Open Graph -->
<meta property="og:title" content="NFT Artworks" />
<meta property="og:description" content="Modern NFT gallery powered by IPFS — upload images via Pinata, generate ERC-721 metadata, and explore a fully decentralized, cross-device gallery." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nft-artworks.vercel.app/" />
<meta property="og:image" content="https://nft-artworks.vercel.app/nft-artworks-og.svg" />
<meta property="og:image:type" content="image/svg+xml" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="NFT Artworks" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="NFT Artworks" />
<meta name="twitter:description" content="Modern NFT gallery powered by IPFS — upload images via Pinata, generate ERC-721 metadata, and explore a fully decentralized, cross-device gallery." />
<meta name="twitter:image" content="https://nft-artworks.vercel.app/nft-artworks-og.svg" />
<meta name="twitter:image:alt" content="NFT Artworks — a modern dark-themed NFT gallery interface with uploaded artwork cards on IPFS" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@300;400;500&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>