/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/src/data/quotes.tsx
71 строка
2 KB
Sébastien Lorber
chore(monorepo): upgrade monorepo to ESLint 9 (#12024)
15 май 2026, 21:08
Не верифицирован
15 май 2026, 21:08
7518645
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import Translate, {translate} from '@docusaurus/Translate'; const QUOTES = [ { thumbnail: require('./quotes/christopher-chedeau.jpg'), name: 'Christopher "vjeux" Chedeau', title: translate({ id: 'homepage.quotes.christopher-chedeau.title', message: 'Lead Prettier Developer', description: 'Title of quote of Christopher Chedeau on the home page', }), text: ( <Translate id="homepage.quotes.christopher-chedeau" description="Quote of Christopher Chedeau on the home page"> I've helped open source many projects at Facebook and every one needed a website. They all had very similar constraints: the documentation should be written in markdown and be deployed via GitHub pages. I’m so glad that Docusaurus now exists so that I don’t have to spend a week each time spinning up a new one. </Translate> ), }, { thumbnail: require('./quotes/hector-ramos.jpg'), name: 'Hector Ramos', title: translate({ id: 'homepage.quotes.hector-ramos.title', message: 'Lead React Native Advocate', description: 'Title of quote of Hector Ramos on the home page', }), text: ( <Translate id="homepage.quotes.hector-ramos" description="Quote of Hector Ramos on the home page"> Open source contributions to the React Native docs have skyrocketed after our move to Docusaurus. The docs are now hosted on a small repo in plain markdown, with none of the clutter that a typical static site generator would require. Thanks Slash! </Translate> ), }, { thumbnail: require('./quotes/ricky-vetter.jpg'), name: 'Ricky Vetter', title: translate({ id: 'homepage.quotes.risky-vetter.title', message: 'ReasonReact Developer', description: 'Title of quote of Ricky Vetter on the home page', }), text: ( <Translate id="homepage.quotes.risky-vetter" description="Quote of Ricky Vetter on the home page"> Docusaurus has been a great choice for the ReasonML family of projects. It makes our documentation consistent, i18n-friendly, easy to maintain, and friendly for new contributors. </Translate> ), }, ]; export default QUOTES;