forked from marcelscruz/dev-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Gatsby and add static index.html
- Loading branch information
1 parent
bb2c0ce
commit 394f0f7
Showing
54 changed files
with
64 additions
and
863 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 |
---|---|---|
|
@@ -35,5 +35,4 @@ yarn-error.log* | |
.vercel | ||
|
||
# gatsby | ||
.cache | ||
public | ||
.cache |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
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,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="icon" href="./assets/images/favicon.png" type="image/x-icon" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="style.css"> | ||
|
||
<title>Dev Resources API</title> | ||
</head> | ||
<body> | ||
<img src="./assets/images/logo.svg" alt="Dev Resources API"> | ||
|
||
<p><a href="https://github.com/marcelscruz/dev-resources-api">Visit our GitHub repository</a> for instructions on how to use it and how to collaborate.</p> | ||
</body> | ||
</html> |
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,44 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
align-items: center; | ||
background-color: #0A0B0D; | ||
box-sizing: border-box; | ||
color: #FFFFFF; | ||
display: flex; | ||
flex-direction: column; | ||
font-family: 'Inter', sans-serif; | ||
height: 100vh; | ||
justify-content: center; | ||
padding: 20px; | ||
width: 100vw; | ||
} | ||
|
||
a, | ||
a:visited, | ||
a:active { | ||
color: #FFFFFF; | ||
} | ||
|
||
|
||
img { | ||
height: 20px; | ||
margin-bottom: 50px; | ||
} | ||
|
||
p { | ||
text-align: center; | ||
} | ||
|
||
@media screen and (min-width: 500px) { | ||
img { | ||
height: 40px; | ||
} | ||
|
||
p { | ||
font-size: 18px; | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.