feat: split big file and update agents.md

This commit is contained in:
2026-06-18 23:20:17 +03:00
parent cc014068ba
commit f0ec78b051
18 changed files with 608 additions and 539 deletions

View File

@@ -0,0 +1,15 @@
import { Badge } from "@/shared/ui/badge";
export function SectionHeader({ label, title, text }: { label: string; title: string; text: string }) {
return (
<section className="volt-grid border-b border-primary/25 px-4 py-14 md:px-6 md:py-20">
<div className="mx-auto max-w-7xl">
<Badge className="mb-6 bg-primary text-primary-foreground">{label}</Badge>
<h1 className="max-w-5xl text-4xl font-semibold uppercase leading-none md:text-7xl">
{title}
</h1>
<p className="mt-6 max-w-2xl text-lg leading-8 text-muted-foreground">{text}</p>
</div>
</section>
);
}