Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
dipankardas011 authored Aug 24, 2024
1 parent 9c57a74 commit bd6761a
Show file tree
Hide file tree
Showing 20 changed files with 198 additions and 8,730 deletions.
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

36 changes: 0 additions & 36 deletions .gitignore

This file was deleted.

36 changes: 0 additions & 36 deletions README.md

This file was deleted.

17 changes: 0 additions & 17 deletions components.json

This file was deleted.

Binary file removed image.png
Binary file not shown.
198 changes: 198 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ksctl Page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kode+Mono:[email protected]&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Arial', sans-serif;
color: #333;
background-color: #f5f5f5;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header, main, footer {
width: 90%;
max-width: 800px;
text-align: center;
}
header {
background-color: #dae3d4;
color: #416866;
padding: 20px 20px;
margin-top: 10px;
border-radius: 5px;
}
footer {
background-color: #dae3d4;
color: #416866;
padding: 20px 20px;
margin-top: 10px;
border-radius: 5px;
}
main {
padding: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin: 20px 0;
background-color: #fff;
border-radius: 5px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 15px;
}
a {
color: #7c9c93;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #3c6464;
}
img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
@media (max-width: 768px) {
ul, li {
text-align: center;
margin: 0 10px;
}
li {
display: block;
margin-bottom: 15px;
}
.tagline {
font-size: 20px;
}
.description {
font-size: 13px;
}
}
.tagline {
color: #416866;
margin: 20px 0;
font-size: 24px;
font-weight: bold;
}
.description {
margin: 20px 0;
color: #7c9c93;
font-size: 15px;
font-family: "Kode Mono", monospace;
}
.banner {
color: #7c9c93;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
margin-bottom: 20px;
}
.command-box {
background-color: #f0f0f0;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
margin: 20px auto;
text-align: center;
font-family: 'Courier New', Courier, monospace;
position: relative;
max-width: 80%;
}
.copy-button {
position: absolute;
top: 5px;
right: 5px;
background-color: #7c9c93;
color: white;
border: none;
border-radius: 3px;
padding: 5px 10px;
cursor: pointer;
font-size: 12px;
}
.copy-button:hover {
background-color: #3c6464;
}
.notification {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #4CAF50;
color: white;
padding: 15px;
border-radius: 5px;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
</style>
</head>
<body>
<header>
<h1>Hello From Ksctl 👋</h1>
<div class="banner">A new Home page is coming soon! 😉</div>
</header>
<main>
<div>
<img src="https://raw.githubusercontent.com/ksctl/ksctl/main/img/Ksctl-logos.jpeg" alt="Ksctl Logo" style="width:150px; height:auto;">
</div>
<div>
<h4 class="tagline">Cloud Agnostic Kubernetes Management Tool</h4>
<blockquote>
<p class="description">
Simplifying Kubernetes Management with Single-Tool Efficiency.
Seamlessly create and manage cloud-managed or self-managed Kubernetes clusters.
Lightweight, fast, and evolving with community-driven features.
</p>
</blockquote>
</div>
<div class="command-box">
<button class="copy-button" onclick="copyCommand()">Copy</button>
<code>curl -sfL https://get.ksctl.com/install | python3 -</code>
</div>
<ul>
<li><a href="https://docs.ksctl.com">Documentation</a></li>
<li><a href="https://github.com/ksctl">Github Organization</a></li>
<li><a href="https://x.com/ksctl_k8s">Twitter/X</a></li>
<li><a href="https://discord.gg/pWjtKxVrMe">Discord Channel</a></li>
<li><a href="https://status.ksctl.com">Status Page</a></li>
</ul>
</main>
<footer>
<h4>Made by Ksctl Team</h4>
</footer>
<div id="notification" class="notification"></div>
<script>
function copyCommand() {
const command = document.querySelector('.command-box code').textContent;
navigator.clipboard.writeText(command).then(() => {
showNotification('Command copied to clipboard!');
}).catch(err => {
console.error('Failed to copy: ', err);
showNotification('Failed to copy command');
});
}

function showNotification(message) {
const notification = document.getElementById('notification');
notification.textContent = message;
notification.style.opacity = '1';
setTimeout(() => {
notification.style.opacity = '0';
}, 2000);
}
</script>
</body>
</html>
4 changes: 0 additions & 4 deletions next.config.mjs

This file was deleted.

Loading

0 comments on commit bd6761a

Please sign in to comment.