feat: split template file and update agents.md

This commit is contained in:
2026-06-18 23:13:47 +03:00
parent dce25f7123
commit 5b692e2634
28 changed files with 238 additions and 135 deletions

View File

@@ -0,0 +1,3 @@
import { Badge } from "@/shared/ui/badge";
export function InnerHero({ eyebrow, title, text }: { eyebrow: string; title: string; text: string }) { return <section className="border-b border-border bg-card"><div className="mx-auto w-full max-w-[1280px] px-5 py-14 sm:px-8"><Badge variant="outline" className="mb-6 rounded-md border-primary/30 text-primary">{eyebrow}</Badge><h1 className="max-w-[960px] text-4xl font-semibold leading-[1.02] tracking-normal sm:text-6xl">{title}</h1><p className="mt-5 max-w-[760px] text-base leading-7 text-muted-foreground">{text}</p></div></section>; }