-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2280 from moreal/docs-landing-page
Deploy `index.html` also to gh-pages
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>NineChronicles Headless</title> | ||
<meta charset="UTF-8"/> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
</head> | ||
<body> | ||
<div class="flex min-h-screen min-w-screen justify-center items-center"> | ||
<div class="flex flex-col justify-center items-center gap-5"> | ||
<p class="bg-gray-700 p-5 text-white text-4xl font-extrabold">NineChronicles.Headless</p> | ||
<span>A headless node to validate, network, operate NineChronicles chain.</span> | ||
<hr class="w-full" /> | ||
<div class="flex flex-row justify-center items-center gap-2"> | ||
<a href="https://github.com/planetarium/NineChronicles.Headless"><i class="fa fa-github"></i> Repository</a> | ||
<span>|</span> | ||
<a href="https://planetarium.github.io/NineChronicles.Headless/graphql">GraphQL Docs</a> | ||
<span>|</span> | ||
<a href="https://planetarium.github.io/NineChronicles.Headless/cli">CLI Docs</a> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |