40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta name="description" content="Web site created using create-eth-app"/>
|
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"site-black": "#1F1D2B",
|
|
"dim-white": "#E2E2E2",
|
|
"site-pink": "#E8006F",
|
|
"site-dim": "rgba(255, 255, 255, 0.02)",
|
|
"site-dim2": "rgba(255, 255, 255, 0.13)",
|
|
},
|
|
fontFamily: {
|
|
poppins: ["Poppins", "sans-serif"],
|
|
},
|
|
boxShadow: {
|
|
card: "0 8px 32px 0 rgba(0, 0, 0, 0.07)",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<title>Ethereum App</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|