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.
28 lines
885 B
28 lines
885 B
# RoboTop сайт робототехнического фестиваля
|
|
|
|
A Next.js starter for your next blog or personal site. Built with:
|
|
|
|
- [Typescript](https://www.typescriptlang.org/)
|
|
- Write posts with [MDX](https://mdxjs.com/)
|
|
- Style with [Tailwind CSS](https://tailwindcss.com/)
|
|
- Linting with [ESLint](https://eslint.org/)
|
|
- Formatting with [Prettier](https://prettier.io/)
|
|
- Linting, typechecking and formatting on by default using [`husky`](https://github.com/typicode/husky) for commit hooks
|
|
- Testing with [Jest](https://jestjs.io/) and [`react-testing-library`](https://testing-library.com/docs/react-testing-library/intro)
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
git clone https://github.com/ChangoMan/nextjs-typescript-mdx-blog.git
|
|
cd nextjs-typescript-mdx-blog
|
|
|
|
yarn install
|
|
# or
|
|
npm install
|
|
|
|
yarn dev
|
|
# or
|
|
npm run dev
|
|
```
|
|
|
|
Your new site will be up at http://localhost:3000/
|
|
|