Skip to content

Commit 7eda9ba

Browse files
style: remove Latest Articles & Engineering Notes section from homepage
1 parent 0f3cb8d commit 7eda9ba

1 file changed

Lines changed: 0 additions & 23 deletions

File tree

src/pages/index.astro

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -148,30 +148,7 @@ const totalProjects = featuredProjects.length;
148148

149149

150150

151-
<!-- Recent Articles Section -->
152-
<section id="blog" class="section">
153-
<div class="container">
154-
<div class="section-header">
155-
<div>
156-
<h2 class="section-title">Latest Articles & Engineering Notes</h2>
157-
<p class="section-subtitle">Technical guides synced live from dev.to/networkandcode.</p>
158-
</div>
159-
<a href="/blog" class="view-all-link">All {totalPosts} Articles &rarr;</a>
160-
</div>
161151

162-
<div class="recent-posts-grid">
163-
{recentPosts.map(post => (
164-
<article class="glass-card post-card">
165-
<time class="post-date">{post.dateStr}</time>
166-
<h3 class="post-title">
167-
<a href={`/blog/${post.slug}`}>{post.title}</a>
168-
</h3>
169-
<a href={`/blog/${post.slug}`} class="read-more">Read Article &rarr;</a>
170-
</article>
171-
))}
172-
</div>
173-
</div>
174-
</section>
175152
</BaseLayout>
176153

177154
<style>

0 commit comments

Comments
 (0)