feat: add form components and exhibition registration page

- Implemented Checkbox, Input, Radio, Select, Textarea components for form handling.
- Created exhibition registration page with integrated form components.
- Added validation and state management for form inputs.
- Included styles and accessibility features for better user experience.
This commit is contained in:
2025-07-30 17:05:36 +09:00
parent 72d04e034d
commit cb37c826e6
27 changed files with 661 additions and 70 deletions
+4
View File
@@ -1,8 +1,12 @@
import { CoverSoon } from "@/components/Cover";
import Head from "next/head";
export default function Home() {
return (
<>
<Head>
<title>Фестиваль технических видов спорта</title>
</Head>
<CoverSoon />
</>
);