Skip to content

Commit 9bf6df4

Browse files
style: remove footer completely from site layout
1 parent 5bcce16 commit 9bf6df4

1 file changed

Lines changed: 1 addition & 37 deletions

File tree

src/layouts/BaseLayout.astro

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,6 @@ const navItems = [
5959
<main class="site-main">
6060
<slot />
6161
</main>
62-
63-
<footer class="site-footer">
64-
<div class="container footer-content">
65-
<p>&copy; {new Date().getFullYear()} networkandcode. Cloud Native & Systems Engineering.</p>
66-
<div class="footer-links">
67-
<a href="/cv">Live CV</a>
68-
<a href="/accreditations">Certifications</a>
69-
<a href="/awards">Awards</a>
70-
<a href="https://dev.to/networkandcode" target="_blank" rel="noopener">DEV.to</a>
71-
<a href="https://github.com/networkandcode" target="_blank" rel="noopener">GitHub</a>
72-
<a href="https://linkedin.com/in/networkandcode" target="_blank" rel="noopener">LinkedIn</a>
73-
<a href="https://www.youtube.com/channel/UCZTRMzFB2HJ6zCDM1n4FhHA" target="_blank" rel="noopener">YouTube</a>
74-
</div>
75-
</div>
76-
</footer>
7762
</body>
7863
</html>
7964

@@ -130,29 +115,8 @@ const navItems = [
130115
flex: 1;
131116
}
132117

133-
.site-footer {
134-
border-top: 1px solid var(--border-glass);
135-
padding: 2rem 0;
136-
margin-top: 4rem;
137-
background: var(--bg-surface);
138-
}
139-
140-
.footer-content {
141-
display: flex;
142-
justify-content: space-between;
143-
align-items: center;
144-
color: var(--text-muted);
145-
font-size: 0.9rem;
146-
}
147-
148-
.footer-links {
149-
display: flex;
150-
gap: 1.25rem;
151-
flex-wrap: wrap;
152-
}
153-
154118
@media (max-width: 768px) {
155-
.header-content, .footer-content {
119+
.header-content {
156120
flex-direction: column;
157121
gap: 1rem;
158122
}

0 commit comments

Comments
 (0)