diff --git a/public/images/scheme/map.png b/public/images/scheme/map.png new file mode 100644 index 0000000..46c6fb4 Binary files /dev/null and b/public/images/scheme/map.png differ diff --git a/public/images/video/paper_tear.png b/public/images/video/paper_tear.png new file mode 100644 index 0000000..ad5b88e Binary files /dev/null and b/public/images/video/paper_tear.png differ diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 6ab515a..d85ba32 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -4,16 +4,19 @@ interface ButtonProps { children: React.ReactNode; onClick?: () => void; className?: string; - variant?: "default" | "blue"; + variant?: "default" | "blue" | "blue_alt"; + shadowEnabled?: boolean; } export default function Button(props: ButtonProps) { - const { variant = "default" } = props; + const { variant = "default", shadowEnabled = true } = props; const getButtonStyles = () => { switch (variant) { case "blue": return "bg-[#1068B0] text-white hover:bg-[#0e5a9c]"; + case "blue_alt": + return "bg-[#1068B0] text-black hover:bg-[#0e5a9c]"; default: return "bg-white text-black hover:bg-gray-100"; } @@ -23,21 +26,25 @@ export default function Button(props: ButtonProps) {
+ [Выберите площадку, чтобы увидеть расписание] +
+
+
+