feat: initial commit
This commit is contained in:
commit
985e49da80
1 changed files with 583 additions and 0 deletions
583
index.html
Normal file
583
index.html
Normal file
|
@ -0,0 +1,583 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>eplg.cloud | Modern Cloud Hosting</title>
|
||||
<style>
|
||||
:root {
|
||||
--dark-bg: #121212;
|
||||
--dark-surface: #1e1e1e;
|
||||
--dark-border: #2a2a2a;
|
||||
--dark-accent: #3a3a3a;
|
||||
--text-primary: #ffffff;
|
||||
--text-secondary: #b3b3b3;
|
||||
--accent-color: #6d5acd;
|
||||
--accent-light: #8b7ce0;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--dark-bg);
|
||||
color: var(--text-primary);
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.grid-background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image:
|
||||
linear-gradient(to right, var(--dark-border) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, var(--dark-border) 1px, transparent 1px);
|
||||
background-size: 30px 30px;
|
||||
opacity: 0.2;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 2rem;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 1.5rem 0;
|
||||
border-bottom: 1px solid var(--dark-border);
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 700;
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.logo span {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: 8rem 0 6rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 4.5rem;
|
||||
line-height: 1.1;
|
||||
font-weight: 800;
|
||||
letter-spacing: -1.5px;
|
||||
margin-bottom: 1.5rem;
|
||||
background: linear-gradient(90deg, var(--text-primary), var(--accent-light));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.6;
|
||||
color: var(--text-secondary);
|
||||
max-width: 700px;
|
||||
margin: 0 auto 3rem;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
padding: 0.875rem 2rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.button-primary {
|
||||
background-color: var(--accent-color);
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.button-primary:hover {
|
||||
background-color: var(--accent-light);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 15px rgba(109, 90, 205, 0.2);
|
||||
}
|
||||
|
||||
.button-secondary {
|
||||
background-color: transparent;
|
||||
color: var(--text-primary);
|
||||
border: 1px solid var(--dark-border);
|
||||
}
|
||||
|
||||
.button-secondary:hover {
|
||||
border-color: var(--text-secondary);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.features {
|
||||
padding: 6rem 0;
|
||||
border-top: 1px solid var(--dark-border);
|
||||
}
|
||||
|
||||
.section-title {
|
||||
text-align: center;
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 4rem;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2.5rem;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
background-color: var(--dark-surface);
|
||||
border: 1px solid var(--dark-border);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
||||
}
|
||||
|
||||
.feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
border-color: var(--dark-accent);
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
background-color: rgba(109, 90, 205, 0.1);
|
||||
color: var(--accent-color);
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.feature-card h3 {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.feature-card p {
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.pricing {
|
||||
padding: 6rem 0;
|
||||
border-top: 1px solid var(--dark-border);
|
||||
}
|
||||
|
||||
.pricing-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2.5rem;
|
||||
}
|
||||
|
||||
.pricing-card {
|
||||
background-color: var(--dark-surface);
|
||||
border: 1px solid var(--dark-border);
|
||||
border-radius: 12px;
|
||||
padding: 2.5rem;
|
||||
text-align: center;
|
||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.pricing-card:hover {
|
||||
transform: translateY(-5px);
|
||||
border-color: var(--dark-accent);
|
||||
}
|
||||
|
||||
.pricing-card.featured {
|
||||
border-color: var(--accent-color);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pricing-card.featured::before {
|
||||
content: "Popular";
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
right: -2rem;
|
||||
background-color: var(--accent-color);
|
||||
color: white;
|
||||
padding: 0.25rem 2rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.pricing-card h3 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.price {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.price span {
|
||||
font-size: 1rem;
|
||||
color: var(--text-secondary);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.pricing-features {
|
||||
margin: 2rem 0;
|
||||
text-align: left;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.pricing-features li {
|
||||
list-style: none;
|
||||
margin-bottom: 0.75rem;
|
||||
color: var(--text-secondary);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pricing-features li::before {
|
||||
content: "✓";
|
||||
color: var(--accent-color);
|
||||
margin-right: 0.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 4rem 0;
|
||||
border-top: 1px solid var(--dark-border);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.footer-links a {
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.footer-links a:hover {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.copyright {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.about {
|
||||
padding: 6rem 0;
|
||||
border-top: 1px solid var(--dark-border);
|
||||
}
|
||||
|
||||
.about-content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 4rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.about-text h2 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 2rem;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.about-text p {
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.8;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.about-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
background-color: var(--dark-surface);
|
||||
border: 1px solid var(--dark-border);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent-color);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h1 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.cta-buttons {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.about-content {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="grid-background"></div>
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<nav>
|
||||
<a href="#" class="logo">eplg<span>.cloud</span></a>
|
||||
<div class="nav-links">
|
||||
<a href="#features">Features</a>
|
||||
<a href="#pricing">Pricing</a>
|
||||
<a href="#about">About</a>
|
||||
<a href="mailto:contact@epilogue.team">Contact</a>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>Modern Cloud Hosting for the Future</h1>
|
||||
<p>Experience lightning-fast performance, unmatched pricing, and a seamless experience. The next generation of cloud hosting is here.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="#pricing" class="button button-primary">Get Started</a>
|
||||
<a href="#about" class="button button-secondary">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="features" id="features">
|
||||
<div class="container">
|
||||
<h2 class="section-title">Powerful Features</h2>
|
||||
<div class="features-grid">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">⚡</div>
|
||||
<h3>High Performance</h3>
|
||||
<p>Engineered for speed with SSD storage, optimized network infrastructure, high performance CPUs, and memory.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔄</div>
|
||||
<h3>Fast Networking</h3>
|
||||
<p>Experience lightning-fast speeds and uninterrupted connectivity.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🛡️</div>
|
||||
<h3>Enterprise Security</h3>
|
||||
<p>Secure infrastructure, and advanced firewalls keep your data and services secure.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🇨🇭</div>
|
||||
<h3>Hosting in Switzerland</h3>
|
||||
<p>We're based in Switzerland, a safe haven for your, and your customers data.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🌐</div>
|
||||
<h3>Global CDN</h3>
|
||||
<p>Deliver content quickly with our locations with optimal routing.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">🔧</div>
|
||||
<h3>Made for everyone</h3>
|
||||
<p>No matter your budget or needs, we've got you covered.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pricing" id="pricing">
|
||||
<div class="container">
|
||||
<h2 class="section-title">Simple, Transparent Pricing
|
||||
<p style="font-size: 18px;color: gray;">Each of our plans are completely customizable on request</p>
|
||||
</h2>
|
||||
<div class="pricing-grid">
|
||||
<div class="pricing-card">
|
||||
<h3>Educational, Non-profit or Small Projects</h3>
|
||||
<div class="price">$0<span>/month</span></div>
|
||||
<ul class="pricing-features">
|
||||
<li>Fast Content Delivery</li>
|
||||
<li>Gameservers for schools and non-profits</li>
|
||||
<li>Cloud Storage for non-profits</li>
|
||||
<li>Web hosting for schools and non-profits</li>
|
||||
<li>28/7 Support</li>
|
||||
<li>Unlimited bandwidth</li>
|
||||
<li>Web analytics dashboard</li>
|
||||
<li>Custom IPv4 addresses</li>
|
||||
</ul>
|
||||
<a href="mailto:contact@epilogue.team?subject=Free%20Plan%20Inquiry%20-%20Educational%20/%20Non-profit" class="button button-secondary">Choose Plan</a>
|
||||
</div>
|
||||
<div class="pricing-card">
|
||||
<h3>Hot object storage</h3>
|
||||
<div class="price"><span>starting at</span><br>$7<span>/month</span></div>
|
||||
<ul class="pricing-features">
|
||||
<li>Minimum 1TB storage</li>
|
||||
<li>Unlimited bandwidth</li>
|
||||
<li>Up to 10 Gbps speeds</li>
|
||||
</ul>
|
||||
<a href="mailto:contact@epilogue.team?subject=Hot%20Object%20Storage%20Plan%20Inquiry" class="button button-secondary">Choose Plan</a>
|
||||
</div>
|
||||
<div class="pricing-card featured">
|
||||
<h3>Gameserver Hosting</h3>
|
||||
<div class="price"><span>starting at</span><br>$4<span>/month</span></div>
|
||||
<ul class="pricing-features">
|
||||
<li>4 CPU cores at 4.5Ghz</li>
|
||||
<li>8GB RAM</li>
|
||||
<li>160GB SSD storage</li>
|
||||
<li>500GB HDD storage on request</li>
|
||||
<li>Unlimited bandwidth</li>
|
||||
<li>Custom domain</li>
|
||||
<li>18/7 Support</li>
|
||||
<li>Easy to use dashboard</li>
|
||||
<li>Free upgrades on request</li>
|
||||
</ul>
|
||||
<a href="mailto:contact@epilogue.team?subject=Gameserver%20Hosting%20Plan%20Inquiry" class="button button-primary">Choose Plan</a>
|
||||
</div>
|
||||
<div class="pricing-card">
|
||||
<h3>Enterprise</h3>
|
||||
<div class="price">$650<span>/month</span></div>
|
||||
<ul class="pricing-features">
|
||||
<li>16 CPU cores 5Ghz</li>
|
||||
<li>64GB RAM</li>
|
||||
<li>320GB SSD storage</li>
|
||||
<li>2TB HDD storage on request</li>
|
||||
<li>Unlimited bandwidth</li>
|
||||
<li>Web analytics dashboard</li>
|
||||
<li>18/7 dedicated support</li>
|
||||
<li>Custom domain mapping</li>
|
||||
<li>$1551 Cheaper than AWS</li>
|
||||
</ul>
|
||||
<a href="mailto:contact@epilogue.team?subject=Enterprise%20Plan%20Inquiry" class="button button-secondary">Choose Plan</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="about" id="about">
|
||||
<div class="container">
|
||||
<div class="about-content">
|
||||
<div class="about-text">
|
||||
<h2>Powering the Future of Cloud Computing</h2>
|
||||
<p>At eplg.cloud, we're passionate about cloud hosting. We beleive that that cloud computing should be accessable for everyone.</p>
|
||||
<p>Founded by <a target="_blank" style="color: #6d5acd;" href="https://epilogue.team">https://epilogue.team</a>, we have got a lot of experience developing and hosting. No matter your budget or needs, we've got you covered.</p>
|
||||
</div>
|
||||
<div class="about-stats">
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">99.99%</div>
|
||||
<div class="stat-label">Uptime</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">1.5M</div>
|
||||
<div class="stat-label">Unique Visitors</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">5</div>
|
||||
<div class="stat-label">Years of Experience</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-number">18/7</div>
|
||||
<div class="stat-label">Expert Support</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="footer-links">
|
||||
<a target="_blank" href="https://epilogue.team/blogs">Blog</a>
|
||||
<a target="_blank" href="https://epilogue.team/terms">Terms</a>
|
||||
<a target="_blank" href="https://epilogue.team/privacy">Privacy</a>
|
||||
<a href="mailto:contact@epilogue.team">Contact</a>
|
||||
</div>
|
||||
<p class="copyright">© 2025 eplg.cloud. All rights reserved.</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue