Skip to content

Commit 66c3863

Browse files
committed
feat: replace Remix by React Router
1 parent 701f042 commit 66c3863

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

docs/overview/getting-started.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import CypressLogo from "@site/src/img/frameworks/cypress.png";
1111
import PlaywrightLogo from "@site/src/img/frameworks/playwright.png";
1212
import PuppeteerLogo from "@site/src/img/frameworks/puppeteer.png";
1313
import NextjsLogo from "@site/src/img/frameworks/next-js.png";
14-
import RemixLogo from "@site/src/img/frameworks/remix.png";
14+
import ReactRouterLogo from "@site/src/img/frameworks/react-router.png";
1515
import WebdriverIOLogo from "@site/src/img/frameworks/webdriverio.png";
1616
import StorybookLogo from "@site/src/img/frameworks/storybook.png";
1717
import OthersLogo from "@site/src/img/frameworks/others.png";
@@ -46,7 +46,11 @@ Learn how to setup Argos in your project:
4646
to="/quickstart/puppeteer"
4747
/>
4848
<XCard logo={NextjsLogo} text="Next.js Quickstart" to="/quickstart/next-js" />
49-
<XCard logo={RemixLogo} text="Remix Quickstart" to="/quickstart/remix" />
49+
<XCard
50+
logo={ReactRouterLogo}
51+
text="React Router Quickstart"
52+
to="/quickstart/react-router"
53+
/>
5054
<XCard
5155
logo={StorybookLogo}
5256
text="Storybook Quickstart"

docs/quickstart/remix.mdx renamed to docs/quickstart/react-router.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
slug: /quickstart/remix
3-
title: Remix
2+
slug: /quickstart/react-router
3+
title: React Router (Remix)
44
sidebar_position: 6
55
---
66

@@ -13,17 +13,17 @@ import {
1313
ScreenshotGuidesLink,
1414
} from "@site/src/partials";
1515

16-
# Remix Quickstart
16+
# React Router (Remix) Quickstart
1717

18-
Learn how to setup visual testing in a Remix project using Argos.
18+
Learn how to setup visual testing in a React Router (previously Remix) project using Argos.
1919

20-
The best way to integrate Argos with Remix is to setup Playwright in your project.
20+
The best way to integrate Argos with React Router is to setup Playwright in your project.
2121

2222
## Prerequisites
2323

2424
To get the most out of this guide, you’ll need to:
2525

26-
- [Use Remix](https://remix.run/)
26+
- [Use React Router](https://reactrouter.com/)
2727
- [Install Playwright](https://playwright.dev/docs/intro)
2828
- [Run Playwright on your CI/CD](https://playwright.dev/docs/ci-intro#on-pushpull_request)
2929
- [Create your project in Argos](https://app.argos-ci.com/new)
@@ -47,7 +47,7 @@ Get the Argos Playwright SDK.
4747

4848
## Additional resources
4949

50-
- [Remix example](https://github.com/argos-ci/argos-javascript/tree/main/examples/remix)
50+
- [React Router example](https://github.com/argos-ci/argos-javascript/tree/main/examples/react-router)
5151
- [Argos Playwright SDK reference](/playwright)
5252

5353
---

docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ const config = {
8989
from: "/quickstart",
9090
to: "/getting-started",
9191
},
92+
{
93+
from: "/quickstart/remix",
94+
to: "/quickstart/react-router",
95+
},
9296
],
9397
},
9498
],

src/img/frameworks/react-router.png

974 Bytes
Loading

src/img/frameworks/remix.png

-703 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)