feat: enhance Button component with disabled state and add CoverSoon component

This commit is contained in:
2025-07-18 16:31:18 +09:00
parent 70b54352c9
commit d750215952
5 changed files with 76 additions and 31 deletions
+27
View File
@@ -119,4 +119,31 @@ function Cover() {
);
}
function CoverSoon() {
return (
<div
className="bg-cover bg-center bg-no-repeat relative justify-center items-center py-36"
style={{ backgroundImage: "url('/images/cover.svg')" }}
>
<div className="container mx-auto max-w-5/7 mb-24">
{/* Top row with ФЕСТИВАЛЬ and date box */}
<div className="flex flex-row items-center space-x-16">
<CoverHeading>ФЕСТИВАЛЬ</CoverHeading>
<DateBox />
</div>
<CoverHeading textPosition="right">ТЕХНИЧЕСКИХ</CoverHeading>
<CoverHeading>ВИДОВ СПОРТА</CoverHeading>
</div>
<div className="flex justify-center items-center">
<Button disabled>скоро</Button>
</div>
</div>
);
}
export { CoverSoon };
export default Cover;