You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							993 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							993 B
						
					
					
				| import React from 'react';
 | |
| import Layout from '../components/Layout';
 | |
| import { Link } from '../components/UX';
 | |
| 
 | |
| export const About = (): JSX.Element => {
 | |
|   return (
 | |
|     <Layout
 | |
|       customMeta={{
 | |
|         title: 'Контакты',
 | |
|       }}
 | |
|     >
 | |
|       <h1>РоботТоп</h1>
 | |
|       <p><b>Организатор соревнований</b>  <Link href="https://school103.centerstart.ru/sveden/common" >МАОУ СОШ 103 г. Краснодар</Link> </p>
 | |
|       <p><b>Главный судья соревнований</b><Link href="https://krasnikov.pro"> Красников Павел Геннадьевич </Link> -
 | |
|         <Link href="tel:+7-918-945-80-44"> 8-918-945-80-44 </Link> -  
 | |
|         <Link href="https://t.me/krasnikovPavel"> Telegram</Link>
 | |
|       </p>
 | |
|       <p><b>Вопросы по соревнованиям можно задавать в </b><Link href="https://t.me/robotop_competition"> Telegram группе </Link></p>
 | |
|     </Layout>
 | |
|   );
 | |
| };
 | |
| 
 | |
| export default About;
 | |
| 
 |