Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
add temporary landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
mistermoe committed Sep 24, 2024
1 parent 276ba32 commit 7b52ac9
Showing 1 changed file with 39 additions and 2 deletions.
41 changes: 39 additions & 2 deletions registry/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,48 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>DIDPay - Coming Soon</title>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'IBM Plex Mono', monospace;
background-color: #f0f0f0;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.container {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
color: #2c3e50;
margin-bottom: 1rem;
font-weight: 700;
}

p {
margin-bottom: 2rem;
font-weight: 400;
}
</style>
</head>

<body>

<div class="container">
<h1>DIDPay</h1>
<p>Coming Soon</p>
</div>
</body>

</html>

0 comments on commit 7b52ac9

Please sign in to comment.