feat: add new blog posts, associated images, and automation scripts for content management

This commit is contained in:
Poyraz Avsever
2026-04-10 11:55:47 +03:00
parent 83e192ebd6
commit 36ffbea30a
206 changed files with 6626 additions and 727 deletions
+1 -16
View File
@@ -140,26 +140,11 @@ export function BlogDetailContent({ post }: BlogDetailContentProps) {
<header className="space-y-3">
<Badge className="rounded-sm">{post.category}</Badge>
<Typography variant="h2" className="leading-tight">
{post.title}
</Typography>
<Typography variant="small" className="text-muted-foreground">
<Typography variant="small" className="block text-muted-foreground">
{post.author} · {post.date} · {post.readTime}
</Typography>
<Typography variant="p" className="text-muted-foreground">
{post.excerpt}
</Typography>
</header>
<Card className="relative aspect-16/8 overflow-hidden rounded-sm border-border">
<img
src={post.coverImage}
alt={post.title}
sizes="(max-width: 768px) 100vw, 50vw"
className="object-cover"
/>
</Card>
<section className="space-y-5">
<ReactMarkdown
remarkPlugins={[remarkGfm]}