feat: init

This commit is contained in:
2026-05-08 22:45:11 +03:00
commit 0ab34ce1bc
84 changed files with 13038 additions and 0 deletions

View File

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