c022f2ba2e
Deploy dummy Shopify site as both a learning exercise and proof-of-concept for Raf's card game, Monster Poker. Change-Id: I7bc91dcbf4e171c5e169140f5e9d811303e1285f Reviewed-on: https://cl.tvl.fyi/c/depot/+/4787 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
24 lines
660 B
HTML
24 lines
660 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Buy Monster Poker</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
};
|
|
</script>
|
|
</head>
|
|
<body class="bg-cyan-900 container mx-auto">
|
|
<h1 class="text-cyan-300 text-6xl text-center pt-10">
|
|
<a class="hover:underline"
|
|
href="https://monsterpoker.myshopify.com/products/monster-poker-republic">
|
|
Buy Monster Poker <b>today</b>!
|
|
</a>
|
|
</h1>
|
|
</body>
|
|
</html>
|