Skip to content

Commit

Permalink
add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
loan-mgt committed May 13, 2024
1 parent acdb33e commit 20b91b3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
7 changes: 7 additions & 0 deletions static/assets/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions static/assets/images/logo_transparent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RCP Game</title>
<link rel="icon" href="/assets/images/logo_transparent.svg">

<!-- Include Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>

<body class="bg-gray-200">
<div class="container mx-auto mt-8">
<div class="container mx-auto mt-2 ">
<div class="flex h-20 w-full justify-center items-center">
<img class="h-full w-auto" src="/assets/images/logo.svg">

</div>
<h1 class="text-3xl font-semibold text-center mb-4">Rock Paper Scissors Game</h1>
<div id="join-container" class="flex flex-col justify-center items-center mb-4">
<input id="player-name" type="text" placeholder="Enter your name"
Expand Down Expand Up @@ -56,7 +62,6 @@ <h1 class="text-3xl font-semibold text-center mb-4">Rock Paper Scissors Game</h1
</div>
</div>
</div>

<script>
var socket = null;
let playerName = null;
Expand Down

0 comments on commit 20b91b3

Please sign in to comment.