-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
47 lines (46 loc) · 1.7 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charSet="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<meta property="og:title" content="2048 Frame" />
<meta property='og:image' content="https://homerow.club/2048/i.php" />
<meta property="fc:frame" content="vNext" />
<meta property="fc:frame:image" content="https://homerow.club/2048/i.php" />
<meta property="fc:frame:button:1" content="Play" />
<meta property="fc:frame:post_url" content="https://homerow.club/2048/play.php" />
<meta property="of:accepts:xmtp" content="2024-02-01" />
<meta property="of:accepts:anonymous" content="1.0" />
<meta property="of:version" content="vNext" />
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<style type="text/css">
body {
display:flex;
justify-content:center;
align-items:center;
height:100vh;
background-color:#8465cb;
}
#page {
width:760px;
background-color:#fff;
border-radius:24px;
padding:24px 36px;
}
h1+p {
margin-top:-1em;
opacity:0.7;
font-weight:700;
}
</style>
</head>
<body>
<div id="page">
<h1>2048 Frame</h1>
<p>Fully playable 2048 in a Farcaster Frame</p>
<p>Play it here: <a href="https://warpcast.com/m0nt0y4/0x8c27e729">warpcast.com/m0nt0y4/0x8c27e729</a></p>
<p>Want to see the code? Go to: <a href="https://github.com/Montoya/2048frame/">github.com/Montoya/2048frame/</a></p>
<p>It's open source (MIT License), feel free to use it for your own projects.</p>
</div>
</body>
</html>