Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 126 additions & 23 deletions public/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -1418,30 +1418,103 @@
}

/* ─── Footer ─── */
.footer-brand-section {
display: flex;
align-items: center;
justify-content: space-between;
}

.footer-description {
margin-top: 0;
}
.site-footer {
border-top: 1px solid var(--border);
padding: 48px 24px 32px;
position: relative;
z-index: 1;
overflow: hidden;
margin-top: 120px;
padding: 80px 20px 30px;
background: linear-gradient(
to bottom,
rgba(15,15,20,0.95),
rgba(5,5,10,1)
);
border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-glow {
position: absolute;
top: -100px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 300px;
background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
filter: blur(80px);
z-index: 0;
}

.footer-inner {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
margin: auto;
}

.footer-brand-section {
margin-bottom: 32px;
margin-bottom: 50px;
}

.footer-brand-section p {
color: var(--text-muted);
font-size: 0.85rem;
margin-top: 10px;
.brand-text {
display: flex;
flex-direction: column;
justify-content: center;
}

.footer-links-grid {
.brand-powered {
font-size: 0.6rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.8;
}

.footer-description {
margin-top: 18px;
max-width: 420px;
color: var(--text-secondary);
line-height: 1.7;
}

.footer-socials {
display: flex;
gap: 16px;
margin-top: 24px;
}

.footer-socials a {
width: 42px;
height: 42px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.08);
color: white;
transition: all 0.3s ease;
text-decoration: none;
}

.footer-socials a:hover {
transform: translateY(-4px);
background: rgba(99,102,241,0.2);
border-color: rgba(99,102,241,0.4);
}

.footer-links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 40px;
margin-bottom: 50px;
gap: 60px;
margin-bottom: 32px;
justify-content: center;
Expand All @@ -1452,31 +1525,61 @@
}

.footer-links-grid h4 {
font-family: var(--font-heading);
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 12px;
color: var(--text-secondary);
margin-bottom: 18px;
font-size: 1rem;
color: white;
}

.footer-links-grid a {
display: block;
color: var(--text-muted);
font-size: 0.85rem;
padding: 4px 0;
transition: color var(--duration-fast) var(--ease-out);
margin-bottom: 12px;
color: var(--text-secondary);
text-decoration: none;
transition: 0.3s ease;
}

.footer-links-grid a:hover {
color: var(--text-primary);
color: white;
transform: translateX(4px);
}

.footer-bottom {
padding-top: 24px;
border-top: 1px solid var(--border);
font-size: 0.78rem;
color: var(--text-muted);
border-top: 1px solid rgba(255,255,255,0.08);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
color: var(--text-secondary);
font-size: 0.95rem;
}

.footer-bottom-links {
display: flex;
gap: 18px;
}

.footer-bottom-links a {
color: var(--text-secondary);
text-decoration: none;
transition: 0.3s;
}

.footer-bottom-links a:hover {
color: white;
}

/* Responsive */

@media (max-width: 768px) {
.footer-bottom {
flex-direction: column;
align-items: flex-start;
}

.footer-links-grid {
grid-template-columns: 1fr 1fr;
}
}

/* ─── Scroll Animations ─── */
Expand Down
107 changes: 73 additions & 34 deletions public/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<html lang="en">

<head>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"/>
<link rel="stylesheet" href="css/home.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down Expand Up @@ -1106,50 +1108,87 @@ <h3 style="font-family:var(--font-heading);font-size:1.3rem;margin-bottom:6px;">
</section>

<!-- ══════ FOOTER ══════ -->
<footer class="site-footer">
<div class="footer-inner">
<div class="footer-brand-section">
<a href="/" class="navbar-logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"
stroke-linejoin="round">
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" />
</svg>
</div>
<div style="display: flex; flex-direction: column; justify-content: center;">
<span class="logo-text">Conn<span class="logo-dot">.</span></span>
<span
style="font-size: 0.5rem; color: var(--text-secondary); line-height: 1; margin-top: -1px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8;">powered
by aethercodesociety</span>
</div>
</a>
<p>Your link-in-bio, reimagined.</p>
</div>
<div class="footer-links-grid">
<div>
<h4>Product</h4>
<a href="#features">Features</a>
<a href="#themes">Themes</a>

<a href="/me">Demo</a>
</div>
<div>
<h4>Get Started</h4>
<a href="/admin">Dashboard</a>
<a href="/admin">Create Page</a>
<!-- ══════ ENHANCED FOOTER ══════ -->
<footer class="site-footer">
<div class="footer-glow"></div>

<div class="footer-inner">

<!-- Brand Section -->
<div class="footer-brand-section">
<a href="/" class="navbar-logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"
stroke-linecap="round" stroke-linejoin="round">
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" />
</svg>
</div>

<div class="brand-text" >
<span class="logo-text">Conn<span class="logo-dot">.</span></span>
<span class="brand-powered">powered by aethercodesociety</span>
<div>
<h4>Support</h4>
<a href="#contact">Contact Us</a>
<a href="/privacy-policy.html">Privacy Policy</a>
<a href="/terms-and-services.html">Terms & Services</a>
</div>
</a>

<p class="footer-description">
Your link-in-bio, reimagined for creators, developers and digital brands.
</p>

<!-- Social Icons -->
<div class="footer-socials">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-discord"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>

<!-- Links -->
<div class="footer-links-grid">

<div>
<h4>Product</h4>
<a href="#features">Features</a>
<a href="#themes">Themes</a>
<a href="/me">Demo</a>
<a href="#">Analytics</a>
</div>

<div>
<h4>Get Started</h4>
<a href="/admin">Dashboard</a>
<a href="/admin">Create Page</a>
<a href="#">Pricing</a>
<a href="#">Templates</a>
</div>
<div class="footer-bottom">
<span>© 2026 Conn. Built with ⚡</span>

<div>
<h4>Resources</h4>
<a href="#">Documentation</a>
<a href="#">Community</a>
<a href="#">Roadmap</a>
<a href="#contact">Contact Us</a>
</div>

</div>
</footer>

<!-- Bottom -->
<div class="footer-bottom">
<span>© 2026 Conn. Built with ⚡ for creators worldwide.</span>

<div class="footer-bottom-links">
<a href="#">Privacy Policy</a>
<a href="#">Terms</a>
</div>
</div>

</div>
</footer>

<!-- Scroll to Top Button -->
<button id="scrollTopBtn" aria-label="Scroll to top">
Expand Down
Loading