4brains-node-generator
Version:
A CLI tool to generate a Node.js app by 4Brains Technologies
91 lines (90 loc) • 2.4 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to 4Brains Node App</title>
<style>
body {
margin: 0;
font-family: "Courier New", Courier, monospace;
background-color: #121212;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
.container {
text-align: center;
background: #1e1e1e;
padding: 2rem 3rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
margin-bottom: 2rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #bbbbbb;
}
a {
color: #ffffff;
text-decoration: none;
background-color: #1e90ff;
padding: 0.5rem 1.5rem;
border-radius: 4px;
transition: background-color 0.3s, transform 0.3s;
}
a:hover {
background-color: #0a74da;
transform: scale(1.05);
}
.console {
font-family: "Courier New", Courier, monospace;
background: #000000;
color: #33ff33;
padding: 1rem 1rem 2rem 1rem;
border-radius: 8px;
margin-bottom: 1.5rem;
text-align: center;
line-height: 1.5;
white-space: preserve-breaks;
}
.footer {
text-align: center;
color: #bbbbbb;
font-size: 0.9rem;
}
.footer img {
width: 200px;
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<div class="container">
<div class="console">
/----------------------------------\ <br />
| 4Brains Node Generator | <br />
\----------------------------------/
</div>
<h1>Welcome to 4Brains Node App</h1>
<p>Your Node.js app is up and running!</p>
<a
href="https://github.com/pawan-4brains/4brains-node-generator"
target="_blank"
>Learn More</a
>
</div>
<div class="footer">
<img src="https://cdn.4brains.in/logo.png" alt="4Brains Logo" />
<p>© 2023 4Brains Technologies Pvt Ltd. All rights reserved.</p>
</div>
</body>
</html>