import type { Metadata } from "next"; import Link from "next/link"; import { getPosts } from "@/lib/posts"; export const metadata: Metadata = { title: "Infosec Posts" }; export default function InfosecPage() { const posts = getPosts("infosec"); return (
Infosec Posts

Teknik güvenlik yazıları, tool analizleri, CTF writeupları

{posts.length === 0 ? (
Henüz yazı yok.
) : (
{posts.map((post) => (

{post.title}

{post.excerpt}

{post.tags.map((t) => {t})}
{new Date(post.date).toLocaleDateString("tr-TR", { year: "numeric", month: "long", day: "numeric" })}
))}
)}
); }