Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

13
components/BestSellerTitle.js Executable file
View File

@@ -0,0 +1,13 @@
export default function BestSellers({title, topTitle}) {
return (
<div className="flex justify-center pb-6">
<div className="flex flex-col items-center">
<svg className="w-8 h-8" width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.41 10.72H15.32V3.52002C15.32 1.84002 14.41 1.50002 13.3 2.76002L12.5 3.67002L5.73 11.37C4.8 12.42 5.19 13.28 6.59 13.28H9.68V20.48C9.68 22.16 10.59 22.5 11.7 21.24L12.5 20.33L19.27 12.63C20.2 11.58 19.81 10.72 18.41 10.72Z" fill="#101318"/>
</svg>
<span className="text-4xl py-3">{topTitle}</span>
<span className="text-4xl font-bold">{title}</span>
</div>
</div>
)
}