feat: split big file and update agents.md

This commit is contained in:
2026-06-18 23:14:26 +03:00
parent 0ab34ce1bc
commit 520cb0e184
23 changed files with 361 additions and 255 deletions

View File

@@ -1,16 +1,5 @@
"use client";
import { CtaPanel, IconCards, ProductAssurance, ProductDetail } from "@/widgets/template-ui";
import { eventTypes } from "@/entities/site-content";
import { ProductDetailPage } from "@/widgets/product-detail-page";
export default function Page() {
return (
<>
<ProductDetail />
<ProductAssurance />
<IconCards items={eventTypes} />
<CtaPanel title="Не уверены в размере?" text="Откройте size help или добавьте товар в wishlist, чтобы вернуться позже." href="/shipping" label="Доставка и размеры" />
</>
);
return <ProductDetailPage />;
}