diff --git a/.gitignore b/.gitignore
index 1437c53..6603c82 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,6 +23,7 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
+/.history
# local env files
.env.local
diff --git a/.history/components/Head_20210629061557.tsx b/.history/components/Head_20210629061557.tsx
deleted file mode 100644
index 448e833..0000000
--- a/.history/components/Head_20210629061557.tsx
+++ /dev/null
@@ -1,42 +0,0 @@
-import NextHead from 'next/head';
-import { useRouter } from 'next/router';
-import React from 'react';
-import { MetaProps } from '../types/layout';
-
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
-
-const Head = ({ customMeta }: { customMeta?: MetaProps }): JSX.Element => {
- const router = useRouter();
- const meta: MetaProps = {
- title: 'Hunter Chang - Website',
- description:
- 'Sleep Deprived Father. Senior Web Developer. Lover of all things Ramen and Kpop.',
- image: `${WEBSITE_HOST_URL}/images/site-preview.png`,
- type: 'website',
- ...customMeta,
- };
-
- return (
-
- {meta.title}
-
-
-
-
-
-
-
-
-
-
-
-
-
- {meta.date && (
-
- )}
-
- );
-};
-
-export default Head;
diff --git a/.history/components/Head_20220613104435.tsx b/.history/components/Head_20220613104435.tsx
deleted file mode 100644
index 21d23c1..0000000
--- a/.history/components/Head_20220613104435.tsx
+++ /dev/null
@@ -1,42 +0,0 @@
-import NextHead from 'next/head';
-import { useRouter } from 'next/router';
-import React from 'react';
-import { MetaProps } from '../types/layout';
-
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
-
-const Head = ({ customMeta }: { customMeta?: MetaProps }): JSX.Element => {
- const router = useRouter();
- const meta: MetaProps = {
- title: 'РоботТоп - робототехнический фестиваль',
- description:
- 'Sleep Deprived Father. Senior Web Developer. Lover of all things Ramen and Kpop.',
- image: `${WEBSITE_HOST_URL}/images/site-preview.png`,
- type: 'website',
- ...customMeta,
- };
-
- return (
-
- {meta.title}
-
-
-
-
-
-
-
-
-
-
-
-
-
- {meta.date && (
-
- )}
-
- );
-};
-
-export default Head;
diff --git a/.history/components/Layout_20210629061557.tsx b/.history/components/Layout_20210629061557.tsx
deleted file mode 100644
index 5fed6f5..0000000
--- a/.history/components/Layout_20210629061557.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import { MetaProps } from '../types/layout';
-import Head from './Head';
-import Navigation from './Navigation';
-import ThemeSwitch from './ThemeSwitch';
-
-type LayoutProps = {
- children: React.ReactNode;
- customMeta?: MetaProps;
-};
-
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
-
-const Layout = ({ children, customMeta }: LayoutProps): JSX.Element => {
- return (
- <>
-
-
-
- {children}
-
-
- >
- );
-};
-
-export default Layout;
diff --git a/.history/components/Layout_20220611153924.tsx b/.history/components/Layout_20220611153924.tsx
deleted file mode 100644
index 05c582f..0000000
--- a/.history/components/Layout_20220611153924.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import { MetaProps } from '../types/layout';
-import Head from './Head';
-import Navigation from './Navigation';
-import ThemeSwitch from './ThemeSwitch';
-
-type LayoutProps = {
- children: React.ReactNode;
- customMeta?: MetaProps;
-};
-
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
-
-const Layout = ({ children, customMeta }: LayoutProps): JSX.Element => {
- return (
- <>
-
-
-
- {children}
-
-
- >
- );
-};
-
-export default Layout;
diff --git a/.history/components/Layout_20220611153935.tsx b/.history/components/Layout_20220611153935.tsx
deleted file mode 100644
index 490cf31..0000000
--- a/.history/components/Layout_20220611153935.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import { MetaProps } from '../types/layout';
-import Head from './Head';
-import Navigation from './Navigation';
-import ThemeSwitch from './ThemeSwitch';
-
-type LayoutProps = {
- children: React.ReactNode;
- customMeta?: MetaProps;
-};
-
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
-
-const Layout = ({ children, customMeta }: LayoutProps): JSX.Element => {
- return (
- <>
-
-
-
- {children}
-
-
- >
- );
-};
-
-export default Layout;
diff --git a/.history/components/Layout_20220611154155.tsx b/.history/components/Layout_20220611154155.tsx
deleted file mode 100644
index dabd4f8..0000000
--- a/.history/components/Layout_20220611154155.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from 'react';
-import { MetaProps } from '../types/layout';
-import Head from './Head';
-import Navigation from './Navigation';
-import ThemeSwitch from './ThemeSwitch';
-
-type LayoutProps = {
- children: React.ReactNode;
- customMeta?: MetaProps;
-};
-
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
-
-const Layout = ({ children, customMeta }: LayoutProps): JSX.Element => {
- return (
- <>
-
-
-
- {children}
-
-
- >
- );
-};
-
-export default Layout;
diff --git a/.history/pages/about_20210629061557.tsx b/.history/pages/about_20210629061557.tsx
deleted file mode 100644
index a96b120..0000000
--- a/.history/pages/about_20210629061557.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const About = (): JSX.Element => {
- return (
-
- About Page
- Welcome to the about page
-
- );
-};
-
-export default About;
diff --git a/.history/pages/about_20220611184210.tsx b/.history/pages/about_20220611184210.tsx
deleted file mode 100644
index 10996a9..0000000
--- a/.history/pages/about_20220611184210.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const About = (): JSX.Element => {
- return (
-
- RobotTop
- Мы команда из 103 школы
-
- );
-};
-
-export default About;
diff --git a/.history/pages/about_20220613104403.tsx b/.history/pages/about_20220613104403.tsx
deleted file mode 100644
index d8eaabf..0000000
--- a/.history/pages/about_20220613104403.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const About = (): JSX.Element => {
- return (
-
- РоботТоп
- Мы команда школы 103
-
- );
-};
-
-export default About;
diff --git a/.history/pages/registration_20220613105138.tsx b/.history/pages/registration_20220613105138.tsx
deleted file mode 100644
index e69de29..0000000
diff --git a/.history/pages/registration_20220613105205.tsx b/.history/pages/registration_20220613105205.tsx
deleted file mode 100644
index c048ad2..0000000
--- a/.history/pages/registration_20220613105205.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const registration = (): JSX.Element => {
- return (
-
- РоботТоп
- Мы команда школы 103
-
- );
-};
-
-export default registration;
diff --git a/.history/pages/registration_20220613105218.tsx b/.history/pages/registration_20220613105218.tsx
deleted file mode 100644
index 86b080b..0000000
--- a/.history/pages/registration_20220613105218.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
- Мы команда школы 103
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613105530.tsx b/.history/pages/registration_20220613105530.tsx
deleted file mode 100644
index 27487a5..0000000
--- a/.history/pages/registration_20220613105530.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613105813.tsx b/.history/pages/registration_20220613105813.tsx
deleted file mode 100644
index b23c98d..0000000
--- a/.history/pages/registration_20220613105813.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613105938.tsx b/.history/pages/registration_20220613105938.tsx
deleted file mode 100644
index 9f37df8..0000000
--- a/.history/pages/registration_20220613105938.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Personal Information
-
Use a permanent address where you can receive mail.
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110330.tsx b/.history/pages/registration_20220613110330.tsx
deleted file mode 100644
index 59e32f8..0000000
--- a/.history/pages/registration_20220613110330.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Personal Information
-
Use a permanent address where you can receive mail.
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110456.tsx b/.history/pages/registration_20220613110456.tsx
deleted file mode 100644
index 6e62926..0000000
--- a/.history/pages/registration_20220613110456.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Personal Information
-
Use a permanent address where you can receive mail.
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110505.tsx b/.history/pages/registration_20220613110505.tsx
deleted file mode 100644
index 0033f3f..0000000
--- a/.history/pages/registration_20220613110505.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Personal Information
-
Use a permanent address where you can receive mail.
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110758.tsx b/.history/pages/registration_20220613110758.tsx
deleted file mode 100644
index 960290b..0000000
--- a/.history/pages/registration_20220613110758.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные о команде
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110824.tsx b/.history/pages/registration_20220613110824.tsx
deleted file mode 100644
index 87437a1..0000000
--- a/.history/pages/registration_20220613110824.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110907.tsx b/.history/pages/registration_20220613110907.tsx
deleted file mode 100644
index 774e0f4..0000000
--- a/.history/pages/registration_20220613110907.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110912.tsx b/.history/pages/registration_20220613110912.tsx
deleted file mode 100644
index cc8ad98..0000000
--- a/.history/pages/registration_20220613110912.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110920.tsx b/.history/pages/registration_20220613110920.tsx
deleted file mode 100644
index de86c3b..0000000
--- a/.history/pages/registration_20220613110920.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613110933.tsx b/.history/pages/registration_20220613110933.tsx
deleted file mode 100644
index b0d3d7f..0000000
--- a/.history/pages/registration_20220613110933.tsx
+++ /dev/null
@@ -1,150 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111051.tsx b/.history/pages/registration_20220613111051.tsx
deleted file mode 100644
index 4db20a7..0000000
--- a/.history/pages/registration_20220613111051.tsx
+++ /dev/null
@@ -1,147 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111140.tsx b/.history/pages/registration_20220613111140.tsx
deleted file mode 100644
index c5f4122..0000000
--- a/.history/pages/registration_20220613111140.tsx
+++ /dev/null
@@ -1,147 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111207.tsx b/.history/pages/registration_20220613111207.tsx
deleted file mode 100644
index 8d08811..0000000
--- a/.history/pages/registration_20220613111207.tsx
+++ /dev/null
@@ -1,147 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111256.tsx b/.history/pages/registration_20220613111256.tsx
deleted file mode 100644
index 036a8b2..0000000
--- a/.history/pages/registration_20220613111256.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111313.tsx b/.history/pages/registration_20220613111313.tsx
deleted file mode 100644
index 6cd7a1c..0000000
--- a/.history/pages/registration_20220613111313.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111319.tsx b/.history/pages/registration_20220613111319.tsx
deleted file mode 100644
index bcbd5b6..0000000
--- a/.history/pages/registration_20220613111319.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111330.tsx b/.history/pages/registration_20220613111330.tsx
deleted file mode 100644
index c3b75e1..0000000
--- a/.history/pages/registration_20220613111330.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111341.tsx b/.history/pages/registration_20220613111341.tsx
deleted file mode 100644
index bcbd5b6..0000000
--- a/.history/pages/registration_20220613111341.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111353.tsx b/.history/pages/registration_20220613111353.tsx
deleted file mode 100644
index a807624..0000000
--- a/.history/pages/registration_20220613111353.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111357.tsx b/.history/pages/registration_20220613111357.tsx
deleted file mode 100644
index 8b5b7dd..0000000
--- a/.history/pages/registration_20220613111357.tsx
+++ /dev/null
@@ -1,134 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111425.tsx b/.history/pages/registration_20220613111425.tsx
deleted file mode 100644
index 373a25e..0000000
--- a/.history/pages/registration_20220613111425.tsx
+++ /dev/null
@@ -1,135 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111429.tsx b/.history/pages/registration_20220613111429.tsx
deleted file mode 100644
index 2edeb4b..0000000
--- a/.history/pages/registration_20220613111429.tsx
+++ /dev/null
@@ -1,135 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613111458.tsx b/.history/pages/registration_20220613111458.tsx
deleted file mode 100644
index 1751117..0000000
--- a/.history/pages/registration_20220613111458.tsx
+++ /dev/null
@@ -1,187 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134008.tsx b/.history/pages/registration_20220613134008.tsx
deleted file mode 100644
index b26ec2a..0000000
--- a/.history/pages/registration_20220613134008.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134019.tsx b/.history/pages/registration_20220613134019.tsx
deleted file mode 100644
index b5f012c..0000000
--- a/.history/pages/registration_20220613134019.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134120.tsx b/.history/pages/registration_20220613134120.tsx
deleted file mode 100644
index 7cd35df..0000000
--- a/.history/pages/registration_20220613134120.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134333.tsx b/.history/pages/registration_20220613134333.tsx
deleted file mode 100644
index 9684bea..0000000
--- a/.history/pages/registration_20220613134333.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134430.tsx b/.history/pages/registration_20220613134430.tsx
deleted file mode 100644
index 73524b6..0000000
--- a/.history/pages/registration_20220613134430.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134557.tsx b/.history/pages/registration_20220613134557.tsx
deleted file mode 100644
index cf1715f..0000000
--- a/.history/pages/registration_20220613134557.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613134648.tsx b/.history/pages/registration_20220613134648.tsx
deleted file mode 100644
index a8aacc7..0000000
--- a/.history/pages/registration_20220613134648.tsx
+++ /dev/null
@@ -1,200 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135232.tsx b/.history/pages/registration_20220613135232.tsx
deleted file mode 100644
index a0905ea..0000000
--- a/.history/pages/registration_20220613135232.tsx
+++ /dev/null
@@ -1,189 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135236.tsx b/.history/pages/registration_20220613135236.tsx
deleted file mode 100644
index 9671cea..0000000
--- a/.history/pages/registration_20220613135236.tsx
+++ /dev/null
@@ -1,188 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135445.tsx b/.history/pages/registration_20220613135445.tsx
deleted file mode 100644
index bf1dd16..0000000
--- a/.history/pages/registration_20220613135445.tsx
+++ /dev/null
@@ -1,189 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135533.tsx b/.history/pages/registration_20220613135533.tsx
deleted file mode 100644
index 8cf8029..0000000
--- a/.history/pages/registration_20220613135533.tsx
+++ /dev/null
@@ -1,190 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135656.tsx b/.history/pages/registration_20220613135656.tsx
deleted file mode 100644
index d39126d..0000000
--- a/.history/pages/registration_20220613135656.tsx
+++ /dev/null
@@ -1,191 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135756.tsx b/.history/pages/registration_20220613135756.tsx
deleted file mode 100644
index db6a5e7..0000000
--- a/.history/pages/registration_20220613135756.tsx
+++ /dev/null
@@ -1,195 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613135924.tsx b/.history/pages/registration_20220613135924.tsx
deleted file mode 100644
index 355e71f..0000000
--- a/.history/pages/registration_20220613135924.tsx
+++ /dev/null
@@ -1,198 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613140253.tsx b/.history/pages/registration_20220613140253.tsx
deleted file mode 100644
index 220a3a7..0000000
--- a/.history/pages/registration_20220613140253.tsx
+++ /dev/null
@@ -1,233 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613140402.tsx b/.history/pages/registration_20220613140402.tsx
deleted file mode 100644
index 254011b..0000000
--- a/.history/pages/registration_20220613140402.tsx
+++ /dev/null
@@ -1,233 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144200.tsx b/.history/pages/registration_20220613144200.tsx
deleted file mode 100644
index 944ed53..0000000
--- a/.history/pages/registration_20220613144200.tsx
+++ /dev/null
@@ -1,260 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
- Song
- Artist
- Year
-
-
-
-
- The Sliding Mr. Bones (Next Stop, Pottersville)
- Malcolm Lockyer
- 1961
-
-
- Witchy Woman
- The Eagles
- 1972
-
-
- Shining Star
- Earth, Wind, and Fire
- 1975
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144314.tsx b/.history/pages/registration_20220613144314.tsx
deleted file mode 100644
index 6608a82..0000000
--- a/.history/pages/registration_20220613144314.tsx
+++ /dev/null
@@ -1,257 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
- State
- City
-
-
-
-
- Indiana
- Indianapolis
-
-
- Ohio
- Columbus
-
-
- Michigan
- Detroit
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144404.tsx b/.history/pages/registration_20220613144404.tsx
deleted file mode 100644
index 58f1e28..0000000
--- a/.history/pages/registration_20220613144404.tsx
+++ /dev/null
@@ -1,257 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
- State
- City
-
-
-
-
- Indiana
- Indianapolis
-
-
- Ohio
- Columbus
-
-
- Michigan
- Detroit
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144459.tsx b/.history/pages/registration_20220613144459.tsx
deleted file mode 100644
index 8c9526d..0000000
--- a/.history/pages/registration_20220613144459.tsx
+++ /dev/null
@@ -1,257 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
- State
- City
-
-
-
-
- Indiana
- Indianapolis
-
-
- Ohio
- Columbus
-
-
- Michigan
- Detroit
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144516.tsx b/.history/pages/registration_20220613144516.tsx
deleted file mode 100644
index e607345..0000000
--- a/.history/pages/registration_20220613144516.tsx
+++ /dev/null
@@ -1,257 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
- State
- City
-
-
-
-
- Indiana
- Indianapolis
-
-
- Ohio
- Columbus
-
-
- Michigan
- Detroit
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144628.tsx b/.history/pages/registration_20220613144628.tsx
deleted file mode 100644
index 362b93a..0000000
--- a/.history/pages/registration_20220613144628.tsx
+++ /dev/null
@@ -1,311 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144731.tsx b/.history/pages/registration_20220613144731.tsx
deleted file mode 100644
index 3d2f200..0000000
--- a/.history/pages/registration_20220613144731.tsx
+++ /dev/null
@@ -1,315 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144757.tsx b/.history/pages/registration_20220613144757.tsx
deleted file mode 100644
index 7261582..0000000
--- a/.history/pages/registration_20220613144757.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144807.tsx b/.history/pages/registration_20220613144807.tsx
deleted file mode 100644
index 21bc461..0000000
--- a/.history/pages/registration_20220613144807.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144812.tsx b/.history/pages/registration_20220613144812.tsx
deleted file mode 100644
index 21476d5..0000000
--- a/.history/pages/registration_20220613144812.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144835.tsx b/.history/pages/registration_20220613144835.tsx
deleted file mode 100644
index 23bcbcd..0000000
--- a/.history/pages/registration_20220613144835.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144842.tsx b/.history/pages/registration_20220613144842.tsx
deleted file mode 100644
index 28f7a98..0000000
--- a/.history/pages/registration_20220613144842.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144845.tsx b/.history/pages/registration_20220613144845.tsx
deleted file mode 100644
index 7017dae..0000000
--- a/.history/pages/registration_20220613144845.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Product name
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613144951.tsx b/.history/pages/registration_20220613144951.tsx
deleted file mode 100644
index 8d9dceb..0000000
--- a/.history/pages/registration_20220613144951.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Color
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613145002.tsx b/.history/pages/registration_20220613145002.tsx
deleted file mode 100644
index 0123ffd..0000000
--- a/.history/pages/registration_20220613145002.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- Category
-
-
- Price
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613145037.tsx b/.history/pages/registration_20220613145037.tsx
deleted file mode 100644
index d47778d..0000000
--- a/.history/pages/registration_20220613145037.tsx
+++ /dev/null
@@ -1,314 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
- Edit
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613145048.tsx b/.history/pages/registration_20220613145048.tsx
deleted file mode 100644
index aff1837..0000000
--- a/.history/pages/registration_20220613145048.tsx
+++ /dev/null
@@ -1,311 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
- Edit
-
-
-
-
- Microsoft Surface Pro
-
-
- White
-
-
- Laptop PC
-
-
- $1999
-
-
- Edit
-
-
-
-
- Magic Mouse 2
-
-
- Black
-
-
- Accessories
-
-
- $99
-
-
- Edit
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613145108.tsx b/.history/pages/registration_20220613145108.tsx
deleted file mode 100644
index 42165bd..0000000
--- a/.history/pages/registration_20220613145108.tsx
+++ /dev/null
@@ -1,274 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Apple MacBook Pro 17"
-
-
- Sliver
-
-
- Laptop
-
-
- $2999
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220613145223.tsx b/.history/pages/registration_20220613145223.tsx
deleted file mode 100644
index e6d683b..0000000
--- a/.history/pages/registration_20220613145223.tsx
+++ /dev/null
@@ -1,274 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614072559.tsx b/.history/pages/registration_20220614072559.tsx
deleted file mode 100644
index cd71e35..0000000
--- a/.history/pages/registration_20220614072559.tsx
+++ /dev/null
@@ -1,274 +0,0 @@
-import React from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614074659.tsx b/.history/pages/registration_20220614074659.tsx
deleted file mode 100644
index d172618..0000000
--- a/.history/pages/registration_20220614074659.tsx
+++ /dev/null
@@ -1,282 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- fetch('/api/registration', { method: 'POST', body: data })
- .then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614074809.tsx b/.history/pages/registration_20220614074809.tsx
deleted file mode 100644
index 6b07b89..0000000
--- a/.history/pages/registration_20220614074809.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- console.log(data);
- fetch('/api/registration', { method: 'POST', body: data })
- .then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614074900.tsx b/.history/pages/registration_20220614074900.tsx
deleted file mode 100644
index 0ab86bd..0000000
--- a/.history/pages/registration_20220614074900.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- console.log(data);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614074918.tsx b/.history/pages/registration_20220614074918.tsx
deleted file mode 100644
index 87189af..0000000
--- a/.history/pages/registration_20220614074918.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- console.log(data.body);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614074936.tsx b/.history/pages/registration_20220614074936.tsx
deleted file mode 100644
index 0ab86bd..0000000
--- a/.history/pages/registration_20220614074936.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- console.log(data);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614075104.tsx b/.history/pages/registration_20220614075104.tsx
deleted file mode 100644
index 1677ad5..0000000
--- a/.history/pages/registration_20220614075104.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- console.log(form.current);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614075545.tsx b/.history/pages/registration_20220614075545.tsx
deleted file mode 100644
index 494ca50..0000000
--- a/.history/pages/registration_20220614075545.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.append)
- console.log(form.current);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614075616.tsx b/.history/pages/registration_20220614075616.tsx
deleted file mode 100644
index 17276b1..0000000
--- a/.history/pages/registration_20220614075616.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData()
- console.log(data.append);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614075653.tsx b/.history/pages/registration_20220614075653.tsx
deleted file mode 100644
index d610584..0000000
--- a/.history/pages/registration_20220614075653.tsx
+++ /dev/null
@@ -1,283 +0,0 @@
-import React,{useRef} from 'react'
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- console.log(data.append);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614075940.tsx b/.history/pages/registration_20220614075940.tsx
deleted file mode 100644
index be5b4e3..0000000
--- a/.history/pages/registration_20220614075940.tsx
+++ /dev/null
@@ -1,284 +0,0 @@
-import React,{useRef} from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault()
- const data = new FormData(form.current)
- // eslint-disable-next-line no-console
- console.log(data.append);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/.history/pages/registration_20220614080020.tsx b/.history/pages/registration_20220614080020.tsx
deleted file mode 100644
index 745482b..0000000
--- a/.history/pages/registration_20220614080020.tsx
+++ /dev/null
@@ -1,284 +0,0 @@
-import React,{useRef} from 'react';
-import Layout from '../components/Layout';
-
-export const Registration = (): JSX.Element => {
- const form = useRef(null);
- const submit = e => {
- e.preventDefault();
- const data = new FormData(form.current);
- // eslint-disable-next-line no-console
- console.log(data);
- //fetch('/api/registration', { method: 'POST', body: data })
- //.then(res => res.json())
- // .then(json => setUser(json.user))
- }
- return (
-
- РоботТоп
-
-
-
-
-
-
Регистрация команды
-
Введите актуальные данные команды
-
-
-
-
-
-
-
-
-
Зарегистрированные команды
-
-
-
-
-
- Название команды
-
-
- Учебное заведение
-
-
- ФИО участников
-
-
- Класс
-
-
-
-
-
-
- Фиксики
-
-
- МАОУ СОШ 103
-
-
- Иван, Петр, Дмитрий
-
-
- 1
-
-
-
-
-
-
- );
-};
-
-export default Registration;
diff --git a/components/Head.tsx b/components/Head.tsx
index 08f7526..09fe080 100644
--- a/components/Head.tsx
+++ b/components/Head.tsx
@@ -3,7 +3,7 @@ import { useRouter } from 'next/router';
import React from 'react';
import { MetaProps } from '../types/layout';
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
+export const WEBSITE_HOST_URL = 'https://robotop.krasnikov.pro/';
const Head = ({ customMeta }: { customMeta?: MetaProps }): JSX.Element => {
const router = useRouter();
@@ -28,7 +28,6 @@ const Head = ({ customMeta }: { customMeta?: MetaProps }): JSX.Element => {
-
diff --git a/components/Layout.tsx b/components/Layout.tsx
index 840ebca..1fb4209 100644
--- a/components/Layout.tsx
+++ b/components/Layout.tsx
@@ -9,7 +9,7 @@ type LayoutProps = {
customMeta?: MetaProps;
};
-export const WEBSITE_HOST_URL = 'https://nextjs-typescript-mdx-blog.vercel.app';
+export const WEBSITE_HOST_URL = 'https://robotop.krasnikov.pro/';
const Layout = ({ children, customMeta }: LayoutProps): JSX.Element => {
return (
@@ -33,7 +33,7 @@ const Layout = ({ children, customMeta }: LayoutProps): JSX.Element => {
Разработано {' '}
Krasnikov.pro - {(new Date()).getFullYear()} год
diff --git a/components/LoadingTeamsForm.tsx b/components/LoadingTeamsForm.tsx
index 7524412..f1f5bdc 100644
--- a/components/LoadingTeamsForm.tsx
+++ b/components/LoadingTeamsForm.tsx
@@ -25,7 +25,6 @@ export const LoadingTeamsForm : React.FC = ({
arr.split(',').forEach(str => {
arrOfNum.push(Number(str));
});
-
return Math.min.apply(null, arrOfNum.filter(Boolean)); //Math.min(...arrOfNum);
}
diff --git a/components/Navigation.tsx b/components/Navigation.tsx
index 5bfc3ea..37dba1e 100644
--- a/components/Navigation.tsx
+++ b/components/Navigation.tsx
@@ -10,6 +10,7 @@ const navigation = [
{ name: 'Регистрация', href: '/registration', as: false },
{ name: 'Расписание', href: '/posts/[slug]', as:'festival-schedule' },
{ name: 'Примеры', href: '/posts/[slug]', as:'task-completion-examples'},
+ { name: 'Контакты', href: '/contacts', as: false},
{ name: 'О нас', href: '/about', as: false},
]
@@ -54,7 +55,7 @@ const Navigation = (): JSX.Element => {
aria-controls="mobile-menu"
aria-expanded="false"
>
- Open main menu
+ Открыть главное меню
{!isOpen ? (
) : (
diff --git a/components/RegistrationForm.tsx b/components/RegistrationForm.tsx
index 8a3b919..dff393f 100644
--- a/components/RegistrationForm.tsx
+++ b/components/RegistrationForm.tsx
@@ -1,6 +1,6 @@
import React,{useRef} from 'react';
import { useForm, SubmitHandler, FormProvider } from "react-hook-form";
-import { Select, Input } from "./UX";
+import { Select, Input, Link } from "./UX";
interface IFormInputs {
name_team_coach: string,
@@ -53,7 +53,9 @@ export const RegistrationForm = (props): JSX.Element => {
Регистрация команды
Введите актуальные данные команды
От каждого учебного заведения может быть зарегистрированно неограниченое количеставо команд
- Подписывайтесь на наш Telegram канал , что-бы быть в курсе новосте про соревнование
+ Подписывайтесь на наш
+ Telegram канал
+ , что-бы быть в курсе новостей про соревнование
diff --git a/components/UX/Link.tsx b/components/UX/Link.tsx
new file mode 100644
index 0000000..a43d3b1
--- /dev/null
+++ b/components/UX/Link.tsx
@@ -0,0 +1,14 @@
+import React from 'react';
+
+type Props = {
+ children: string;
+ href: string;
+ }
+
+export const Link: React.FC
= ({children, href}) => {
+ return(
+ <>
+ {children}
+ >
+ )
+}
\ No newline at end of file
diff --git a/components/UX/index.ts b/components/UX/index.ts
index f61ee9b..29a0e80 100644
--- a/components/UX/index.ts
+++ b/components/UX/index.ts
@@ -1,3 +1,4 @@
export * from './Select'
export * from './Alert'
-export * from './Input'
\ No newline at end of file
+export * from './Input'
+export * from './Link'
\ No newline at end of file
diff --git a/pages/about.tsx b/pages/about.tsx
index d8eaabf..7177ebc 100644
--- a/pages/about.tsx
+++ b/pages/about.tsx
@@ -9,7 +9,9 @@ export const About = (): JSX.Element => {
}}
>
РоботТоп
- Мы команда школы 103
+ Мы команда робототехников школы 103 города Краснодар. С 2006 года занимаемся робототехникой. В 2022 году проводим первый Краевой
+ робототехнический фестиваль на базе школы 103
+
);
};
diff --git a/pages/contacts.tsx b/pages/contacts.tsx
new file mode 100644
index 0000000..60fc597
--- /dev/null
+++ b/pages/contacts.tsx
@@ -0,0 +1,23 @@
+import React from 'react';
+import Layout from '../components/Layout';
+import { Link } from '../components/UX';
+
+export const About = (): JSX.Element => {
+ return (
+
+ РоботТоп
+ Организатор соревнований МАОУ СОШ 103 г. Краснодар
+ Главный судья соревнований Красников Павел Геннадьевич -
+ 8-918-945-80-44 -
+ Telegram
+
+ Вопросы по соревнованиям можно задавать в Telegram группе
+
+ );
+};
+
+export default About;
diff --git a/pages/registration.tsx b/pages/registration.tsx
index c1a2e59..bc12cf4 100644
--- a/pages/registration.tsx
+++ b/pages/registration.tsx
@@ -25,7 +25,7 @@ export const Registration = (): JSX.Element => {
return (