diff --git a/public/logos/ctvs.png b/public/logos/ctvs.png new file mode 100644 index 0000000..d8c4cf3 Binary files /dev/null and b/public/logos/ctvs.png differ diff --git a/public/logos/dep.svg b/public/logos/dep.svg new file mode 100644 index 0000000..a6e436d --- /dev/null +++ b/public/logos/dep.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/logos/mos.svg b/public/logos/mos.svg new file mode 100644 index 0000000..d4b3786 --- /dev/null +++ b/public/logos/mos.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/logos/raf.png b/public/logos/raf.png new file mode 100644 index 0000000..0523c06 Binary files /dev/null and b/public/logos/raf.png differ diff --git a/public/logos/smp.png b/public/logos/smp.png new file mode 100644 index 0000000..466b9fc Binary files /dev/null and b/public/logos/smp.png differ diff --git a/src/components/Map.tsx b/src/components/Map.tsx new file mode 100644 index 0000000..cb4308f --- /dev/null +++ b/src/components/Map.tsx @@ -0,0 +1,40 @@ +import { fluxgore, gothampro } from "@/utils/fonts"; +import Button from "./Button"; + +function Map() { + return ( +
+
+
+

+ как нас найти +

+ +

+ 5-7 сентября 2025 +

+ +

+ г. Москва парк Технических видов спорта, МЦД2 станция Курьяново +

+ +
+ +
+
+ +
+ +
+
+
+ ); +} + +export default Map; diff --git a/src/components/Partners.tsx b/src/components/Partners.tsx index 0f9bfce..f297006 100644 --- a/src/components/Partners.tsx +++ b/src/components/Partners.tsx @@ -1,5 +1,52 @@ +/* eslint-disable @next/next/no-img-element */ +import { fluxgore } from "@/utils/fonts"; + function Partners() { - return
Partners
; + return ( +
+
+

+ партнеры +

+ +
+ Dep Logo + Mos Logo + Raf Logo + Ctvs Logo + SMP Logo +
+
+
+ ); } export default Partners; diff --git a/src/pages/index.tsx b/src/pages/index.tsx index fdaa57b..6de53d8 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -2,7 +2,9 @@ import Activities from "@/components/Activities"; import Cover from "@/components/Cover"; import Events from "@/components/Events"; import Info from "@/components/Info"; +import Map from "@/components/Map"; import Navbar from "@/components/Navbar"; +import Partners from "@/components/Partners"; import Scheme from "@/components/Scheme"; import Video from "@/components/Video"; @@ -17,6 +19,8 @@ export default function Home() { + + ); diff --git a/src/styles/globals.css b/src/styles/globals.css index 64bc3c2..281cd97 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -7,4 +7,5 @@ body { height: 100%; + overflow-x: hidden; }