--- import FadeIn from '../ui/FadeIn.astro'; const blogPosts = [ { title: "Best Practices for Modern PHP Development", excerpt: "Explore how to leverage PHP 8.x features and modern tools to create maintainable and performant PHP applications.", date: "May 15, 2023", slug: "best-practices-modern-php-development", tags: ["PHP", "Development", "Best Practices"] }, { title: "Building Type-Safe APIs with TypeScript", excerpt: "How to use TypeScript's powerful type system to create robust and maintainable API integrations in your frontend applications.", date: "April 3, 2023", slug: "building-type-safe-apis-typescript", tags: ["TypeScript", "API", "Frontend"] }, { title: "Performance Optimization Techniques for Web Applications", excerpt: "A comprehensive guide to identifying and solving performance bottlenecks in modern web applications.", date: "March 12, 2023", slug: "performance-optimization-web-applications", tags: ["Performance", "Web", "Optimization"] } ]; ---

Blog

Thoughts, insights, and tutorials on software development and tech. Coming Soon

Blog Coming Soon!

The blog feature is currently in development.

{blogPosts.map((post) => (
{post.tags.map((tag) => ( {tag} ))}

{post.title}

{post.excerpt}

{post.date}
))}