import { auth } from "@/server/auth"; import { api } from "@/trpc/server"; import Link from "next/link"; export default async function Home() { const session = await auth(); const articles = await api.article.getAllPreviews(); return (

Anti Rechts Wiki

{articles.map((article) => (
  • {article.title}
  • ))}
    ); }