Skip to content

Commit 00f529e

Browse files
committed
fix: fixed broken links
1 parent 55bbc2b commit 00f529e

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

docs/guides/quick-start.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ This guide will help you get started with Illusio, the HyperEVM Transaction Simu
1717
### 1. Clone the Repository
1818

1919
```bash
20-
git clone https://github.com/0xNilesh/TxStudio.git
21-
cd TxStudio
20+
git clone https://github.com/hypurrstudio/illusio.git
21+
git clone https://github.com/hypurrstudio/simulation-engine.git
2222
```
2323

2424
### 2. Setup Frontend (Illusio)
@@ -31,10 +31,10 @@ pnpm run dev
3131

3232
The frontend will be available at `http://localhost:3000`
3333

34-
### 3. Setup Backend (TxStudio)
34+
### 3. Setup Backend (simulation-engine)
3535

3636
```bash
37-
cd TxStudio
37+
cd simulation-engine
3838
cp env.example .env
3939
docker-compose up -d
4040
```

docusaurus.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ const config: Config = {
2121
baseUrl: '/illusio-docs/',
2222

2323
// GitHub pages deployment config.
24-
// If you aren't using GitHub pages, you don't need these.
25-
organizationName: 'hypurrstudio', // Usually your GitHub org/user name.
24+
organizationName: 'HypurrStudio', // Usually your GitHub org/user name.
2625
projectName: 'illusio-docs', // Usually your repo name.
2726

2827
onBrokenLinks: 'throw',

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import {Redirect} from '@docusaurus/router';
22
import type {ReactNode} from 'react';
33

44
export default function Home(): ReactNode {
5-
return <Redirect to="/illusio/intro" />;
5+
return <Redirect to="/illusio-docs/intro" />;
66
}

0 commit comments

Comments
 (0)