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.
52 lines
1.0 KiB
52 lines
1.0 KiB
---
|
|
title: Правила соревнований роботов
|
|
description: Правила молодежных соревнований роботов. РоботТОП Junior 2022
|
|
date: '2022-06-01'
|
|
image: '/images/bridge.jpg'
|
|
---
|
|
|
|
<Image
|
|
alt={`Bridge`}
|
|
src={`/images/bridge.jpg`}
|
|
width={1440}
|
|
height={960}
|
|
priority
|
|
/>
|
|
|
|
## Heading H2
|
|
|
|
This is an example blog post with React components. This page is using the `Image` component from Next.js.
|
|
|
|
```jsx:example-post.mdx
|
|
<Image
|
|
alt={`Bridge`}
|
|
src={`/images/bridge.jpg`}
|
|
width={1440}
|
|
height={960}
|
|
priority
|
|
/>
|
|
```
|
|
|
|
### Code Blocks
|
|
|
|
This starter also comes with fancy code blocks with code titles.
|
|
|
|
```jsx:example.jsx
|
|
import React, { useState } from 'react';
|
|
|
|
function Example() {
|
|
// Declare a new state variable, which we'll call "count"
|
|
const [count, setCount] = useState(0);
|
|
|
|
return (
|
|
<div>
|
|
<p>You clicked {count} times</p>
|
|
<button onClick={() => setCount(count + 1)}>
|
|
Click me
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
```
|
|
|
|
Go back [Home](/).
|
|
|