-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.37 KB
/
Copy pathindex.html
File metadata and controls
45 lines (40 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Brew Route</title>
<meta name="description" content="Product Verification Scanner" />
<meta name="author" content="The Brew Route" />
<meta property="og:title" content="The Brew Route" />
<meta property="og:description" content="Product Verification Scanner" />
<meta property="og:type" content="website" />
<meta property="og:image" content="" />
<style>
.blockchain-button {
background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
border: 1px solid #3c3c3c;
color: #00ffcc;
padding: 12px 24px;
font-size: 16px;
text-transform: uppercase;
letter-spacing: 1px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 10px #00ffcc55, 0 0 20px #00ffcc33 inset;
text-decoration: none;
}
.blockchain-button:hover {
background-color: #111;
box-shadow: 0 0 15px #00ffccaa, 0 0 25px #00ffcc66 inset;
}
</style>
</head>
<body>
<a href="./consumer.html" class="blockchain-button">Consumer Page</a>
<div id="root"></div>
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>