Simplify homepage layout
Some checks are pending
Build / build (push) Waiting to run

This commit is contained in:
Neeldhara Misra 2026-06-13 23:35:37 +02:00
parent 32969f0953
commit 3c232eaf96

View file

@ -246,10 +246,6 @@ const html = `<!doctype html>
color: #666;
font-weight: 500;
}
.intro {
max-width: 460px;
font-weight: 700;
}
.blog-list {
display: grid;
gap: 28px;
@ -337,10 +333,7 @@ const html = `<!doctype html>
display: grid;
gap: 24px;
max-width: 390px;
font-weight: 700;
}
.bio a {
width: fit-content;
font-weight: 400;
}
@media (max-width: 860px) {
main {
@ -366,11 +359,6 @@ const html = `<!doctype html>
<main>
<section class="left" aria-label="Blog index">
<span class="mark" aria-hidden="true"></span>
<div>
<h1>Neeldhara Misra</h1>
<p class="role">seven small blogs</p>
</div>
<p class="intro">A quiet index of notes on research, puzzles, writing, tools, art, and other recurring fascinations.</p>
<div class="blog-list">
${entries.map(([blog, posts]) => renderBlog(blog, posts)).join("\n ")}
</div>
@ -384,7 +372,6 @@ const html = `<!doctype html>
<p>I am a computer science faculty member at IIT Gandhinagar. My academic work is broadly around algorithms, structural graph theory, parameterized complexity, computational social choice, combinatorial games, and fair allocation.</p>
<p>These blogs separate different kinds of notes: paper-reading and mini-surveys, puzzle-like teaching prompts, reflective essays, poems, reviews of tools and workflows, experiments with AI, and visual or generative art.</p>
<p>The homepage is deliberately small: each section shows the two newest posts and links to that blog's RSS feed.</p>
<a href="https://www.neeldhara.com/">neeldhara.com</a>
</div>
</aside>
</main>