Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion apps/pigment-css-vite-app/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pigment CSS with Vite - Demo app

This is a Pigment CSS with [Vite](https://vitejs.dev/) project.
This is a Pigment CSS with [Vite](https://vite.dev/) project.
This project is not part of the workspace yet.

## How to run
Expand Down
2 changes: 1 addition & 1 deletion docs/data/joy/components/list/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Inspired by Gmail's desktop navigation bar.

### Collapsible list

Inspired by the [Gatsby documentation](https://www.gatsbyjs.com/docs) navbar.
Inspired by the [Gatsby documentation](https://www.gatsbyjs.com/docs/) navbar.
This example uses the `startAction` prop to create a collapsible button.

{{"demo": "ExampleCollapsibleList.js"}}
Expand Down
2 changes: 1 addition & 1 deletion docs/data/material/customization/palette/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ const theme = createTheme({

:::warning
The `contrastThreshold` parameter can produce counterproductive results.\
Please verify that the [APCA](https://contrast.tools/?tab=apca) color contrast is improved (WCAG 3 [will use](https://typefully.com/DanHollick/sle13GMW2Brp) this new algorithm).
Please verify that the [APCA](https://contrast.tools/?tab=apca) color contrast is improved (WCAG 3 [will use](https://typefully.com/DanHollick/wcag-3-and-apca-sle13GMW2Brp) this new algorithm).
:::

## Picking colors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ It can work alongside Emotion to ease the migration process, but it is recommend
Pigment CSS can be used with one of the following frameworks:

- [Next.js App Router](https://nextjs.org/docs/app) with Webpack v5 (Turbopack is not supported yet)
- [Vite](https://vitejs.dev/)
- [Vite](https://vite.dev/)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Base UI](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.

[Vite](https://vitejs.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command

[Tailwind CSS](https://tailwindcss.com/) is a utility-first CSS framework that provides low-level CSS classes that can be composed to build custom UI designs.

Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind-ts/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function App() {
is a library of unstyled React UI components and hooks.
</li>
<li className="card">
<a href="https://vitejs.dev/" className="link">
<a href="https://vite.dev/" className="link">
Vite
</a>{' '}
is a build tool that aims to provide a faster and leaner development experience for modern
Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind-ts/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Base UI](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.

[Vite](https://vitejs.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command

[Tailwind CSS](https://tailwindcss.com/) is a utility-first CSS framework that provides low-level CSS classes that can be composed to build custom UI designs.

Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function App() {
is a library of unstyled React UI components and hooks.
</li>
<li className="card">
<a href="https://vitejs.dev/" className="link">
<a href="https://vite.dev/" className="link">
Vite
</a>{' '}
is a build tool that aims to provide a faster and leaner development experience for modern
Expand Down
2 changes: 1 addition & 1 deletion examples/base-ui-vite-tailwind/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});
2 changes: 1 addition & 1 deletion examples/joy-ui-vite-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[Joy UI](https://mui.com/joy-ui/getting-started/) is a library of beautifully designed React UI components built to spark joy in the development process.

[Vite](https://vitejs.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command.
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command.

## How to use

Expand Down
2 changes: 1 addition & 1 deletion examples/joy-ui-vite-ts/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});
2 changes: 1 addition & 1 deletion examples/material-ui-pigment-css-vite-ts/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const pigmentConfig = {
transformLibraries: ['@mui/material'],
};

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), pigment(pigmentConfig)],
});
2 changes: 1 addition & 1 deletion examples/material-ui-vite-ts/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});
2 changes: 1 addition & 1 deletion examples/material-ui-vite/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

// https://vitejs.dev/config/
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
});

0 comments on commit 842e4e7

Please sign in to comment.