Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KirbyJeff authored Sep 1, 2024
1 parent e7671fb commit 59c5ebd
Showing 1 changed file with 107 additions and 0 deletions.
107 changes: 107 additions & 0 deletions pages/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BunOS - The Future of Operating Systems</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
color: #333;
}
header {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav {
margin-top: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
font-size: 1.2em;
}
nav a:hover {
background: #555;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.main-content {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 0;
}
.main-content h2 {
font-size: 2em;
margin-bottom: 20px;
}
.main-content p {
font-size: 1.2em;
line-height: 1.6;
max-width: 800px;
text-align: center;
}
.cta {
margin-top: 20px;
}
.cta a {
display: inline-block;
text-decoration: none;
color: #fff;
background: #007bff;
padding: 15px 30px;
font-size: 1.2em;
border-radius: 5px;
}
.cta a:hover {
background: #0056b3;
}
footer {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>BunOS</h1>
<nav>
<a href="features.html">Features</a>
<a href="downloads.html">Download</a>
<a href="contactus.html">Contact</a>
</nav>
</div>
</header>

<div class="container">
<section class="main-content">
<h2>Welcome to BunOS</h2>
<p>BunOS is derived from Ubuntu Jammy, designed to provide a seamless and efficient user experience. With a sleek interface, BunOS is built to meet the demands of modern computing.</p>
<div class="cta">
<a href="downloads.html">Get Started</a>
</div>
</section>
</div>

<footer>
<p>&copy; 2024 KirbyJeff. All rights reserved. | <a href="contactus.html" style="color: #fff;">Contact Us</a></p>
</footer>
</body>
</html>

0 comments on commit 59c5ebd

Please sign in to comment.