feat: add references and volunteer community sections with detailed content

This commit is contained in:
poyrazavsever
2026-03-10 20:53:31 +03:00
parent d732f9b1c3
commit d262b391c9
9 changed files with 302 additions and 36 deletions
+17
View File
@@ -0,0 +1,17 @@
import Link from "next/link";
import { ReferenceCards } from "@/components/reference-cards";
export function ReferencesDetailContent() {
return (
<section className="flex h-full flex-col gap-4 overflow-y-auto">
<Link
href="/about"
className="inline-flex w-fit items-center rounded-sm border border-border px-3 py-1.5 text-sm text-muted-foreground transition-colors hover:text-foreground"
>
{"<- Back to about"}
</Link>
<ReferenceCards className="flex flex-wrap gap-3" />
</section>
);
}