Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions

27
hello-bro.html Normal file
View File

@@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello Bro</title>
<style>
body {
margin: 0;
height: 100vh;
background: #0a0f2f;
color: #f4d03f;
font-family: 'Helvetica', 'Segoe UI', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
font-size: min(12vw, 120px);
text-align: center;
letter-spacing: 0.15em;
}
</style>
</head>
<body>
<h1>Hello bro 👊</h1>
</body>
</html>