-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (30 loc) · 1.09 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Who's that Pokémon?</title>
<!-- Farcaster Frame Meta Tags -->
<meta property="og:title" content="Who's that Pokémon?" />
<meta property="og:image" content="https://example.com/pokemon-frame.png" />
<meta name="fc:frame" content="
{
"imageUrl": "https://example.com/pokemon-frame.png",
"button": {
"title": "Play Now",
"action": {
"type": "launch_frame",
"name": "Who\u0027s that Pok\u00e9mon?",
"url": "https://example.com",
"splashImageUrl": "https://example.com/splash.png",
"splashBackgroundColor": "#0f172a"
}
}
}
" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>