Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add landing page #1

Merged
merged 3 commits into from Jul 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
46 changes: 46 additions & 0 deletions index.html
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Sponsors API</title>
<link rel="stylesheet" href="https://unpkg.com/mvp.css" />
</head>
<style>
aside {
width: 70vw !important;
}
@media only screen and (max-width: 700px) {
aside {
width: 90vw !important;
}
}
</style>
<body>
<header>
<h1>GitHub Sponsors API</h1>
<p>An unofficial RESTful API for GitHub Sponsors</p>
</header>
<main>
<section>
<figure>
<header>
<h3>Endpoints:</h3>
</header>
<aside>
Count of a user's sponsors
<pre>
https://sponsors.trnck.dev/user/sponsors <br># Get the sponsor details
</pre>
</aside>
<aside>
List of a user's sponsors
<pre>
https://sponsors.trnck.dev/user/count <br># Get just the number
</pre>
</aside>
</figure>
</section>
</main>
</body>
</html>