-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from IgboPharaoh/feat/scholarship
Feat: home page
- Loading branch information
Showing
7 changed files
with
4,023 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*node_modules |
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,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Bitcoin Scholarship</title> | ||
<link rel="stylesheet" href="./style.css" /> | ||
<link rel="stylesheet" href="./output.css" /> | ||
</head> | ||
<body> | ||
<main class="flex flex-col h-screen items-center justify-center text-center gap-4 p-4"> | ||
<h1 class="text-4xl sm:text-4xl md:text-7xl font-bold text-black">Stay Tuned</h1> | ||
<p class="text-center text-gray-500 dark:text-gray-400 text-base md:text-xl max-w-[600px] font-normal mb-2"> | ||
We're launching a scholarship to help students learn about the Bitcoin technology. | ||
</p> | ||
<button class="bg-black font- text-white w-fit p-3 px-6 rounded-md text-sm md:text-base hover:bg-transparent hover:border-2 hover:border-black hover:text-black"> | ||
Apply for the Bitcoin Scholarship | ||
</button> | ||
</main> | ||
</body> | ||
</html> |
Oops, something went wrong.