Skip to content

Commit

Permalink
generic github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
voynow committed Aug 24, 2024
1 parent e475256 commit e1e7afd
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI SaaS App</title>
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
align-items: center;
background-color: #ffffff;
color: #333;
}
h1 {
font-size: 2.5rem;
margin: 0;
}
p {
font-size: 1.2rem;
margin: 1rem 0;
}
button {
background-color: #007BFF;
color: #fff;
border: none;
padding: 0.8rem 1.5rem;
font-size: 1rem;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Super Duper SaaS App</h1>
<p>Blessed are the meek for they shall inherit the earth.</p>
<button>Get Started</button>
</body>
</html>

0 comments on commit e1e7afd

Please sign in to comment.