diff --git a/project-words.txt b/project-words.txt index 2649e2b342..203bcb7c0f 100644 --- a/project-words.txt +++ b/project-words.txt @@ -200,6 +200,7 @@ metrika microdata microlink middlewares +mindmap minifier mkcert mkdir diff --git a/website/blog/2023-09-29-preparing-your-site-for-docusaurus-v3/index.mdx b/website/blog/2023-09-29-preparing-your-site-for-docusaurus-v3/index.mdx index bea9892912..7939fb69af 100644 --- a/website/blog/2023-09-29-preparing-your-site-for-docusaurus-v3/index.mdx +++ b/website/blog/2023-09-29-preparing-your-site-for-docusaurus-v3/index.mdx @@ -49,7 +49,7 @@ MDX v3 is much better, but also comes with changes that probably require you to Upgrading MDX comes with all the breaking changes documented on the [MDX v2](https://mdxjs.com/blog/v2/) and [MDX v3](https://mdxjs.com/blog/v3/) release blog posts. Most breaking changes come from MDX v2. The [MDX v2 migration guide](https://mdxjs.com/migrating/v2/) has a section on how to [update MDX files](https://mdxjs.com/migrating/v2/#update-mdx-files) that will be particularly relevant to us. Also make sure to read the [Troubleshooting MDX](https://mdxjs.com/docs/troubleshooting-mdx/) page that can help you interpret common MDX error messages. -Make sure to also read our updated [**MDX and React**](/docs/3.0.0/markdown-features/react) documentation page. +Make sure to also read our updated [**MDX and React**](/docs/markdown-features/react) documentation page. :::tip Ask for help @@ -214,14 +214,14 @@ http://localhost:3000 #### Lower-case MDXComponent mapping -For users providing a [custom `MDXComponent`mapping](/docs/3.0.0/markdown-features/react#mdx-component-scope), components are now "sandboxed": +For users providing a [custom `MDXComponent`mapping](/docs/markdown-features/react#mdx-component-scope), components are now "sandboxed": - a `MDXComponent` mapping for `h1` only gets used for `# hi` but not for `

hi

` - a **lower-cased** custom element name will not be substituted by its respective `MDXComponent` component anymore :::danger visual difference -Your [`MDXComponent` component mapping](/docs/3.0.0/markdown-features/react#mdx-component-scope) might not be applied as before, and your custom components might no longer be used. +Your [`MDXComponent` component mapping](/docs/markdown-features/react#mdx-component-scope) might not be applied as before, and your custom components might no longer be used. ::: diff --git a/website/blog/releases/3.0/img/social-card.png b/website/blog/releases/3.0/img/social-card.png new file mode 100644 index 0000000000..7294d62f68 Binary files /dev/null and b/website/blog/releases/3.0/img/social-card.png differ diff --git a/website/blog/releases/3.0/index.mdx b/website/blog/releases/3.0/index.mdx new file mode 100644 index 0000000000..13db01db30 --- /dev/null +++ b/website/blog/releases/3.0/index.mdx @@ -0,0 +1,393 @@ +--- +title: Announcing Docusaurus 3.0 +authors: + - slorber +tags: [release] +image: ./img/social-card.png +date: 2023-10-31 +--- + +Today, we are happy to **announce Docusaurus 3.0**! 🥳 + +At [**Meta Open Source**](https://opensource.fb.com/), we believe Docusaurus will help you build the **best documentation websites** with **minimal effort**, letting you **focus on what really matters**: writing the content. + +This is a new **major version** of Docusaurus, coming with **new exciting features** and upgraded dependencies. + +In line with the [**Semantic Versioning**](https://semver.org/) principles, this release includes **breaking changes** we documented thoroughly in the [**v3 upgrade guide**](/docs/migration/v3/). Breaking changes can be bothersome, but they are necessary to set the ground for a **new wave of Docusaurus features** we plan to implement. + +![v3.0 social-card image](./img/social-card.png) + +{/* truncate */} + +We initially planned to release more frequent major versions, but Docusaurus v3 has taken longer than expected. Among the breaking changes that we accrued, **upgrading to MDX v3** is probably the main challenge to the adoption of this new version. We went the extra mile to make this upgrade as easy as possible, notably by adding [compatibility options for MDX v1](/docs/api/docusaurus-config#markdown). + +The simplest sites will only need to upgrade a few npm dependencies. For more complex sites, we came up with a few strategies that can help you upgrade more confidently: + +- [Prepare your site](/blog/preparing-your-site-for-docusaurus-v3) ahead of time, incrementally, while staying on Docusaurus v2 +- [Set up visual regression tests](/blog/upgrading-frontend-dependencies-with-confidence-using-visual-regression-testing) to catch unexpected visual changes happening during the upgrade + +:::info About Docusaurus v2 + +According to our [release process](/community/release-process#stable-version), Docusaurus v2 has now entered **maintenance mode**. It will only receive support for major security issues for 3 months, until 31 January 2024. It is recommended to upgrade within that time frame to v3. + +::: + +import IframeWindow from '@site/src/components/BrowserWindow/IframeWindow'; + +## Breaking changes + +This section only gives you a quick glance. All the breaking changes are thoroughly documented in the [**v3 upgrade guide**](/docs/migration/v3). + +Docusaurus v3 upgraded a few dependencies to new major versions, each coming with its own breaking changes: + +- Node.js v16 ➡️ v18 +- React v17 ➡️ v18 +- MDX v1 ➡️ v3 +- TypeScript v4 ➡️ v5 +- prism-react-renderer v1 ➡️ v2 +- react-live v2 ➡️ v4 +- Mermaid v9 ➡️ v10 +- import-fresh v3 ➡️ jiti v1 +- remark-emoji v2 ➡️ v4 + +A typical `package.json` dependency upgrade looks like: + +```diff title="package.json" + { + "dependencies": { + // upgrade to Docusaurus v3 +- "@docusaurus/core": "2.4.3", +- "@docusaurus/preset-classic": "2.4.3", ++ "@docusaurus/core": "3.0.0", ++ "@docusaurus/preset-classic": "3.0.0", + // upgrade to MDX v3 +- "@mdx-js/react": "^1.6.22", ++ "@mdx-js/react": "^3.0.0", + // upgrade to prism-react-renderer v2.0+ +- "prism-react-renderer": "^1.3.5", ++ "prism-react-renderer": "^2.1.0", + // upgrade to React v18.0+ +- "react": "^17.0.2", +- "react-dom": "^17.0.2" ++ "react": "^18.2.0", ++ "react-dom": "^18.2.0" + }, + "devDependencies": { + // upgrade Docusaurus dev dependencies to v3 +- "@docusaurus/module-type-aliases": "2.4.3" +- "@docusaurus/types": "2.4.3" ++ "@docusaurus/module-type-aliases": "3.0.0" ++ "@docusaurus/types": "3.0.0" + } + "engines": { + // require Node.js 18.0+ +- "node": ">=16.14" ++ "node": ">=18.0" + } + } +``` + +Apart from MDX v3, most breaking changes coming with those upgraded dependencies have been handled internally for you: most of the time, you shouldn't have to do anything. Outside of dependencies, the only functional breaking changes coming explicitly from the Docusaurus codebase are: + +- [#9189](https://github.com/facebook/docusaurus/pull/9189): new default blog RSS feed limit of 20 entries +- [#9308](https://github.com/facebook/docusaurus/pull/9308): fix and re-introduce the `:::warning` admonition, deprecate `:::caution` +- [#9310](https://github.com/facebook/docusaurus/pull/9310): remove the legacy versioned sidebar id prefix, used for sites versioned before `v2.0.0-beta.10` (December 2021) +- [#7966](https://github.com/facebook/docusaurus/pull/7966): refactor docs theme components, eventually requiring to you re-swizzle them + +## Highlights + +Below is a non-exhaustive list of new useful features coming with this new version. All the features are listed in the [**Docusaurus v3.0.0 release notes**](https://github.com/facebook/docusaurus/releases/tag/v3.0.0). + +### Markdown + +Docusaurus v3 upgraded from MDX v1 to MDX v3: + +- in [#8288](https://github.com/facebook/docusaurus/pull/8288), we upgraded to [**MDX v2**](https://mdxjs.com/blog/v2/) ([migration guide](https://mdxjs.com/migrating/v2/)) +- in [#9451](https://github.com/facebook/docusaurus/pull/9451), we upgraded to [**MDX v3**](https://mdxjs.com/blog/v3/) ([migration guide](https://mdxjs.com/migrating/v3/)) + +This new MDX version is **much better for content writers and plugin authors**, and lays the ground for implementing new exciting Markdown features. + +:::warning MDX v3 - the main challenge + +The transition from MDX v1 to MDX v3 is the **main challenge** to the adoption of Docusaurus v3. + +Some documents that compiled successfully under Docusaurus v2 might now **fail to compile** under Docusaurus v3, while others might **render differently**. + +Most breaking changes come from [MDX v2](https://mdxjs.com/blog/v2/), and [MDX v3](https://mdxjs.com/blog/v3/) is a relatively small release. The [MDX v2 migration guide](https://mdxjs.com/migrating/v2/) has a section on how to [update MDX files](https://mdxjs.com/migrating/v2/#update-mdx-files) that will be particularly relevant to us. Also make sure to read the [Troubleshooting MDX](https://mdxjs.com/docs/troubleshooting-mdx/) page that can help you interpret common MDX error messages. + +**Don't be intimidated**. Most problems are **easy to fix** and often related to `{` and `<` characters that you now need to escape. However, depending on the size of your site, you might need to edit many files and feel overwhelmed. For this reason, we provide a command [`npx docusaurus-mdx-checker`](https://github.com/slorber/docusaurus-mdx-checker) to help you get an estimate of the work to be done, and we recommend to [prepare your site in advance](/blog/preparing-your-site-for-docusaurus-v3). + +If you created custom [MDX plugins](/docs/markdown-features/plugins) (Remark/Rehype), the AST is slightly different, and you might need to refactor them. + +::: + +This notably enables us to add a [CommonMark mode](/docs/markdown-features#mdx-vs-commonmark) that should make it easier for existing documentations to adopt Docusaurus. It is currently opt-in and **experimental** and limited ([some Docusaurus features will not work](https://github.com/facebook/docusaurus/issues/9092)). In Docusaurus v3, all files are still interpreted as MDX, but we plan to interpret `.md` files as CommonMark in an upcoming major version, and recommend to use the `.mdx` extension for any file using JSX or ES modules. + +We also introduced a new way to [configure Markdown globally for your site](/docs/api/docusaurus-config#markdown), and plan to add more flexible options later. + +```js title="docusaurus.config.js" +export default { + markdown: { + format: 'mdx', + mermaid: true, + preprocessor: ({filePath, fileContent}) => { + return fileContent.replaceAll('{{MY_VAR}}', 'MY_VALUE'); + }, + mdx1Compat: { + comments: true, + admonitions: true, + headingIds: true, + }, + }, +}; +``` + +Docusaurus now uses the [remark-directive](https://github.com/remarkjs/remark-directive) plugin to support admonitions. This also offers you the ability to create your own Remark plugins to extend Markdown with your own [custom directives](https://talk.commonmark.org/t/generic-directives-plugins-syntax/444) such as `:textDirective`, `::leafDirective` or `:::containerDirective`. + +### ESM and TypeScript configs {#esm-ts-configs} + +In [#9317](https://github.com/facebook/docusaurus/pull/9317), we added support for ES Modules and TypeScript config files, including site config, docs sidebars, plugins and presets. + +Here are 2 TypeScript examples, giving you a modern experience with IDE autocompletion: + +```ts title="docusaurus.config.ts" +import type {Config} from '@docusaurus/types'; +import type * as Preset from '@docusaurus/preset-classic'; + +const config: Config = { + title: 'My Site', + favicon: 'img/favicon.ico', + // your site config ... + presets: [ + [ + 'classic', + { + // your preset config ... + } satisfies Preset.Options, + ], + ], + themeConfig: { + // your theme config ... + } satisfies Preset.ThemeConfig, +}; + +export default config; +``` + +```ts title="sidebars.ts" +import type {SidebarsConfig} from '@docusaurus/plugin-content-docs'; + +const sidebars: SidebarsConfig = { + docs: ['introduction'], +}; + +export default sidebars; +``` + +### Unlisted content + +Docusaurus already supported a `draft: true` front matter option in our 3 content plugins (docs, blog, pages), which allows you to remove some pages from your production builds. + +In [#8004](https://github.com/facebook/docusaurus/pull/8004), we introduced a new `unlisted: true` front matter option, which will keep your pages available in production builds, while "hiding" them and making them impossible to discover unless you have the url. This enables convenient workflows where you can easily ask for feedback on a piece of content before the final publication. + +Unlisted content will: + +- be excluded from `sitemap.xml` +- be excluded from SEO results thanks to `` +- be excluded from blog RSS feeds +- be excluded from Algolia DocSearch results +- be filtered from site navbar items, docs sidebars, blog sidebar, blog archives, tags pages... + +Unlisted content will also display a banner so that you don't forget to turn it off once your content is ready for prime time. Here's an example of an [unlisted blog post](/tests/blog/unlisted-post): + + + +### React 18 + +In [#8961](https://github.com/facebook/docusaurus/pull/8961), we upgraded to React 18. This is important, notably for the [gradual adoption of Concurrent React features](https://react.dev/blog/2022/03/29/react-v18#gradually-adopting-concurrent-features), as well as upcoming exciting features such as [build-time React Server Components](https://github.com/facebook/docusaurus/issues/9089). + +This new version of React should be a drop-in replacement for most Docusaurus sites. It comes with breaking changes that we handled internally in the Docusaurus codebase. If your site is using a lot of custom React code, we recommend you to take a look at the official article on [How to Upgrade to React 18](https://react.dev/blog/2022/03/08/react-18-upgrade-guide), notably the new [automatic batching](https://react.dev/blog/2022/03/08/react-18-upgrade-guide#automatic-batching) behavior. + +:::danger Experimental support for React 18 features + +React 18 comes with new features: + +- `` +- `React.lazy()` +- `startTransition()` + +Their Docusaurus support is considered as **experimental**. We might have to adjust the integration in the future, leading to a different runtime behavior. + +::: + +### Automatic JSX runtime + +Docusaurus now uses the ["automatic" JSX runtime](https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html). + +It is not needed anymore to import React in JSX files that do not use any React API. + +```diff title="src/components/MyComponent.js" +- import React from 'react'; + + export default function MyComponent() { + return
Hello
; + } +``` + +### Debug builds + +It is now possible to build your static site in dev mode. + +```bash +docusaurus build --dev +``` + +:::tip Debug React-related problems + +Docusaurus will log more errors to the console, notably React 18 hydration errors through the new [`onRecoverableError` callback](https://react.dev/reference/react-dom/client/hydrateRoot#parameters). + +This new build mode is particularly helpful for **troubleshooting React problems**. Docusaurus will use the development build of React, thus producing detailed and readable error messages instead of minified ones linking to the [React Error Decoder page](https://reactjs.org/docs/error-decoder.html/). + +::: + +### TypeScript + +Docusaurus v3 now requires a minimum version of TypeScript 5.0. + +We re-internalized the base recommended TypeScript config to a new official package: + +```diff title="tsconfig.json" + { +- "extends": "@tsconfig/docusaurus/tsconfig.json", ++ "extends": "@docusaurus/tsconfig", + "compilerOptions": { + "baseUrl": "." + } + } +``` + +We also have cleaner, normalized exports for Docusaurus core type, plugin, and preset options, which you can use within the brand-new [TypeScript config files](#esm-ts-configs): + +```ts title="docusaurus.config.ts" +import type {Config} from '@docusaurus/types'; +import type {Options, ThemeConfig} from '@docusaurus/preset-classic'; +import type {SidebarsConfig} from '@docusaurus/plugin-content-docs'; +``` + +### Code blocks + +In [#9316](https://github.com/facebook/docusaurus/pull/9316), we improved on syntax highlighting thanks to the [prism-react-renderer](https://github.com/FormidableLabs/prism-react-renderer) v2 upgrade. For example, a bash param `--save` is now colored: + +```bash +npm install --save some-package +``` + +The [interactive code editor](/docs/markdown-features/code-blocks#interactive-code-editor) also upgrades to [react-live](https://github.com/FormidableLabs/react-live) v4, coming with a new [sucrase](https://github.com/alangpierce/sucrase) compiler. It is faster, lighter, and supports modern features, notably TypeScript type annotations. + +```js live +function Hello() { + const name: string = 'World'; + return
Hello {name}
; +} +``` + +In [#8982](https://github.com/facebook/docusaurus/pull/8982) and [#8870](https://github.com/facebook/docusaurus/pull/8870), we also added [magic comments](docs/markdown-features/code-blocks#custom-magic-comments) support for TeX-like, Haskell-like, and WebAssembly comment syntax. + +```haskell title="haskell.hs" +stringLength :: String -> Int +-- highlight-next-line +stringLength [] = 0 +stringLength (x:xs) = 1 + stringLength xs +``` + +```matlab title="matlab.m" +% highlight-start +function result = times2(n) + result = n * 2; +end +% highlight-end +x = 10; +% highlight-next-line +y = times2(x); +``` + +### Mermaid diagrams + +In [#9305](https://github.com/facebook/docusaurus/pull/9305), we upgraded to Mermaid v10.4 and added support for async diagram rendering. Docusaurus is now able to render new types of diagrams. + +
+ Mindmap + +```mermaid +mindmap + root((mindmap)) + Research + Creative techniques + Strategic planning + Argument mapping + Tools + Pen and paper + Mermaid +``` + +
+ +
+ Quadrant chart + +```mermaid +quadrantChart + title Reach and engagement of campaigns + x-axis Low Reach --> High Reach + y-axis Low Engagement --> High Engagement + quadrant-1 We should expand + quadrant-2 Need to promote + quadrant-3 Re-evaluate + quadrant-4 May be improved + Campaign A: [0.3, 0.6] + Campaign B: [0.45, 0.23] + Campaign C: [0.57, 0.69] + Campaign D: [0.78, 0.34] + Campaign E: [0.40, 0.34] + Campaign F: [0.35, 0.78] +``` + +
+ +### Query-string data attributes + +In [#9028](https://github.com/facebook/docusaurus/pull/9028), we made it possible to set custom HTML [data attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/data-*) though `docusaurus-data-x` query-string parameters. This makes it easier to embed a Docusaurus iframe on another site, and lets you customize the appearance of the embedded version with CSS. + +```css title="/src/css/custom.css" +html[data-navbar='false'] .navbar { + display: none; +} + +html[data-red-border] div#__docusaurus { + border: red solid thick; +} +``` + + + +### Other features + +Other new features worth mentioning: + +- [#9189](https://github.com/facebook/docusaurus/pull/9189): new blog `feedOptions.limit` option +- [#9071](https://github.com/facebook/docusaurus/pull/9071): add normalized SEO front matter support for the pages plugin +- [#9171](https://github.com/facebook/docusaurus/pull/9028): the client-redirects plugin now supports fully qualified urls and query-string/hash in destination url +- [#9171](https://github.com/facebook/docusaurus/pull/9171): new ESLint rule [`no-html-links`](/docs/api/misc/@docusaurus/eslint-plugin/no-html-links) +- [#8384](https://github.com/facebook/docusaurus/pull/8384): new ESLint rule [`prefer-docusaurus-heading`](/docs/api/misc/@docusaurus/eslint-plugin/prefer-docusaurus-heading) + +Read [**Docusaurus v3.0.0 release notes**](https://github.com/facebook/docusaurus/releases/tag/v3.0.0) for an exhaustive list of changes. + +## Conclusion + +This release comes with a few features, but more importantly **upgrades many pieces of the Docusaurus infrastructure**. + +The **MDX upgrade** consumed a lot of our time this year, and we worked hard to make this important upgrade less difficult for all of you. + +Now that we've caught up with our infrastructure, we'll be back **delivering useful documentation features** very soon, in upcoming minor versions. + +We would like to thank you for using Docusaurus over the years. The documentation framework space is becoming more competitive lately, and we will do our best to ensure that Docusaurus remains a **competitive solution** that stands out for its great **flexibility**. diff --git a/website/docs/guides/markdown-features/markdown-features-intro.mdx b/website/docs/guides/markdown-features/markdown-features-intro.mdx index 2ab48769c6..b3116e2998 100644 --- a/website/docs/guides/markdown-features/markdown-features-intro.mdx +++ b/website/docs/guides/markdown-features/markdown-features-intro.mdx @@ -52,6 +52,12 @@ If you plan to use CommonMark, we recommend the [`siteConfig.markdown.format: 'd ::: +:::danger Experimental CommonMark support + +The CommonMark support is **experimental** and currently has a few [limitations](https://github.com/facebook/docusaurus/issues/9092). + +::: + ## Standard features {#standard-features} Markdown is a syntax that enables you to write formatted content in a readable syntax. diff --git a/website/docs/migration/v3.mdx b/website/docs/migration/v3.mdx index 6e2c8babdd..a93b6fcd10 100644 --- a/website/docs/migration/v3.mdx +++ b/website/docs/migration/v3.mdx @@ -129,7 +129,7 @@ For large sites where a manual review of all pages is complicated, we recommend ::: -Upgrading MDX comes with all the breaking changes documented on the [MDX v2](https://mdxjs.com/blog/v2/) and [MDX v3](https://mdxjs.com/blog/v3/) release blog posts. Most breaking changes come from MDX v2. The [MDX v2 migration guide](https://mdxjs.com/migrating/v2/) has a section on how to [update MDX files](https://mdxjs.com/migrating/v2/#update-mdx-files) that will be particularly relevant to us. Also make sure to read the [Troubleshooting MDX](https://mdxjs.com/docs/troubleshooting-mdx/) page that can help you interpret common MDX error messages. +Upgrading MDX comes with all the breaking changes documented on the [MDX v2](https://mdxjs.com/blog/v2/) and [MDX v3](https://mdxjs.com/blog/v3/) release blog posts. Most breaking changes come from MDX v2, and MDX v3 is a relatively small release. The [MDX v2 migration guide](https://mdxjs.com/migrating/v2/) has a section on how to [update MDX files](https://mdxjs.com/migrating/v2/#update-mdx-files) that will be particularly relevant to us. Also make sure to read the [Troubleshooting MDX](https://mdxjs.com/docs/troubleshooting-mdx/) page that can help you interpret common MDX error messages. Make sure to also read our updated [**MDX and React**](../guides/markdown-features/markdown-features-react.mdx) documentation page. diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index e49b834465..9bd7288a4f 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -94,8 +94,10 @@ const isI18nStaging = process.env.I18N_STAGING === 'true'; const isVersioningDisabled = !!process.env.DISABLE_VERSIONING || isI18nStaging; +/* const TwitterSvg = ''; +*/ const defaultLocale = 'en'; @@ -473,13 +475,16 @@ export default async function createConfigAsync() { respectPrefersColorScheme: true, }, announcementBar: { - id: 'announcementBar-2', // Increment on change - content: `⭐️ If you like Docusaurus, give it a star on GitHub and follow us on Twitter ${TwitterSvg}`, + id: 'announcementBar-3', // Increment on change + // content: `⭐️ If you like Docusaurus, give it a star on GitHub and follow us on Twitter ${TwitterSvg}`, + content: `🎉️ Docusaurus v3.0 it now out! 🥳️`, }, prism: { additionalLanguages: [ 'java', 'latex', + 'haskell', + 'matlab', 'PHp', 'bash', 'diff', diff --git a/website/src/css/custom.css b/website/src/css/custom.css index ee42cd91be..2a0150bb23 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -154,12 +154,19 @@ html[data-theme='dark'] { } div[class^='announcementBar_'] { + font-size: 20px; + + /* --site-announcement-bar-stripe-color1: hsl( var(--site-primary-hue-saturation) 85% ); --site-announcement-bar-stripe-color2: hsl( var(--site-primary-hue-saturation) 95% ); + */ + --site-announcement-bar-stripe-color1: #e8d7ff; + --site-announcement-bar-stripe-color2: #ffe9d1; + background: repeating-linear-gradient( 35deg, var(--site-announcement-bar-stripe-color1), diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index ecd3772d37..1384d185b9 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -19,12 +19,10 @@ import Tweet from '@site/src/components/Tweet'; import Tweets, {type TweetItem} from '@site/src/data/tweets'; import Quotes from '@site/src/data/quotes'; import Features, {type FeatureItem} from '@site/src/data/features'; +import Heading from '@theme/Heading'; -import ProductHuntCard from '@site/src/components/ProductHuntCard'; -import HackerNewsIcon from '@site/src/components/HackerNewsIcon'; import styles from './styles.module.css'; import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css'; -import Heading from '@theme/Heading'; function HeroBanner() { return ( @@ -74,32 +72,6 @@ function HeroBanner() { ); } -function MigrationAnnouncement() { - return ( -
-
- - Docusaurus v1 - - ), - migrationGuideLink: ( - - v1 to v2 migration guide - - ), - }}> - {`Coming from {docusaurusV1Link}? Check out our {migrationGuideLink}.`} - -
-
- ); -} - function TweetsSection() { const tweetColumns: TweetItem[][] = [[], [], []]; Tweets.filter((tweet) => tweet.showOnHomepage).forEach((tweet, i) => @@ -158,7 +130,7 @@ function QuotesSection() { function VideoContainer() { return ( -
+
@@ -212,10 +184,7 @@ function FeaturesContainer() { return (
- - Main features - -
+
{firstRow.map((feature, idx) => ( ))} @@ -253,15 +222,14 @@ function TopBanner() {
{'🎉\xa0'} - - - {'Docusaurus\xa02.0 is\xa0out!️'} + + + {'Docusaurus\xa03.0 is\xa0out!️'} {'\xa0🥳'}
+ {/*
@@ -290,6 +258,7 @@ function TopBanner() {
+ */}
); } @@ -304,10 +273,9 @@ export default function Home(): JSX.Element {
-
- +
diff --git a/website/src/pages/styles.module.css b/website/src/pages/styles.module.css index d318799c2d..051294057e 100644 --- a/website/src/pages/styles.module.css +++ b/website/src/pages/styles.module.css @@ -6,7 +6,7 @@ */ .section { - padding: 72px 0; + padding: 40px 0; } .sectionAlt { @@ -51,7 +51,7 @@ .topBanner { font-size: 20px; - padding: 20px; + padding: 30px 20px; max-width: 900px; margin: 0 auto; text-align: center; @@ -68,22 +68,33 @@ @media only screen and (max-width: 768px) { .topBannerTitle { - font-size: 34px; + font-size: 40px; } } .topBannerTitleText { - background: linear-gradient(45deg, #399cff, #00c775 80%); + background: linear-gradient( + 90deg, + rgb(131 58 180 / 100%) 0%, + rgb(253 29 29 / 100%) 50%, + rgb(252 176 69 / 100%) 100% + ); background-clip: text; -webkit-text-fill-color: transparent; } .topBannerTitleText:hover { border-bottom: solid 2px; + border-color: rgb(152 0 255); } html[data-theme='dark'] .topBannerTitleText { - background: linear-gradient(45deg, #399cff, #00ff95 80%); + background: linear-gradient( + 90deg, + rgb(152 0 255) 0%, + rgb(246 41 41) 50%, + rgb(255 169 8) 100% + ); background-clip: text; -webkit-text-fill-color: transparent; }