Skip to content

Commit ce54fb5

Browse files
committed
Fix CardGrid links to use correct slugs with /platform prefix
- Updated all CardGrid component links across platform documentation to use proper slugs - Fixed relative links (./integrations/...) to absolute paths (/platform/integrations/...) - Corrected storage links from /platform/storage/... to /platform/core-concepts/storage/... - Corrected proxy links from /platform/proxy/... to /platform/core-concepts/proxy/... - Fixed building-actors links from /platform/actors/development/... to /platform/building-actors/... - Fixed incorrect targets (e.g., Environment variables, Status events)
1 parent eafe237 commit ce54fb5

File tree

6 files changed

+36
-36
lines changed

6 files changed

+36
-36
lines changed

sources/platform/4-core-concepts/proxy/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,17 @@ Several types of proxy servers exist, each offering distinct advantages, disadva
8383
<Card
8484
title="Datacenter proxy"
8585
desc="The fastest and cheapest option. It uses datacenters to change your IP address. Note that there is a chance of being blocked because of the activity of other users."
86-
to="/platform/proxy/datacenter-proxy"
86+
to="/platform/core-concepts/proxy/datacenter-proxy"
8787
/>
8888
<Card
8989
title="Residential proxy"
9090
desc="IP addresses located in homes and offices around the world. These IPs are the least likely to be blocked."
91-
to="/platform/proxy/residential-proxy"
91+
to="/platform/core-concepts/proxy/residential-proxy"
9292
/>
9393
<Card
9494
title="Google SERP proxy"
9595
desc="Download and extract data from Google Search Engine Result Pages (SERPs). You can select country and language to get localized results."
96-
to="/platform/proxy/google-serp-proxy"
96+
to="/platform/core-concepts/proxy/google-serp-proxy"
9797
/>
9898
</CardGrid>
9999

sources/platform/4-core-concepts/storage/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ The Apify platform provides three types of storage accessible both within our [A
2020
<Card
2121
title="Dataset"
2222
desc="Stores results from web scraping and data processing, with each Actor run getting a unique dataset. Features include table-like data visualization and multiple export formats like JSON and Excel."
23-
to="/platform/storage/dataset"
23+
to="/platform/core-concepts/storage/dataset"
2424
/>
2525
<Card
2626
title="Key-value store"
2727
desc="Stores various data types like JSON, HTML, images, and strings. Accessible via Apify Console or API, it's ideal for diverse data storage needs.​"
28-
to="/platform/storage/key-value-store"
28+
to="/platform/core-concepts/storage/key-value-store"
2929
/>
3030
<Card
3131
title="Request queue"
3232
desc="Manages URL processing for web crawling and other tasks. Supports different crawling orders and allows for querying and updating URLs, accessible via Apify Console or API​."
33-
to="/platform/storage/request-queue"
33+
to="/platform/core-concepts/storage/request-queue"
3434
/>
3535
</CardGrid>
3636

sources/platform/5-building-actors/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import CardGrid from "@site/src/components/CardGrid";
2424
/>
2525
<Card
2626
title="Programming interface"
27-
to="/platform/actors/development/programming-interface"
27+
to="/platform/building-actors/programming-interface"
2828
desc="Learn about the programming interface of Apify Actors, important commands and features provided by the Apify SDK, and how to use them in your Actors."
2929
/>
3030
<Card
@@ -39,7 +39,7 @@ import CardGrid from "@site/src/components/CardGrid";
3939
/>
4040
<Card
4141
title="Performance"
42-
to="/platform/actors/development/performance"
42+
to="/platform/building-actors/performance"
4343
desc="Learn how to get the maximum value out of your Actors, minimize costs, and maximize results."
4444
/>
4545
</CardGrid>

sources/platform/5-building-actors/programming_interface/index.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,36 +18,36 @@ This chapter will guide you through all the commands you need to build your firs
1818
<Card
1919
title="Basic commands"
2020
desc="Learn how to provide your Actor with context that determines its behavior through a plethora of pre-defined environment variables offered by the Apify SDK."
21-
to="/platform/actors/development/programming-interface/basic-commands"
21+
to="/platform/building-actors/programming-interface/basic-commands"
2222
/>
2323
<Card
2424
title="Environment variables"
2525
desc="Learn how to provide your Actor with context that determines its behavior through a plethora of pre-defined environment variables offered by the Apify SDK."
26-
to="/platform/actors/development/programming-interface/container-web-server"
26+
to="/platform/building-actors/programming-interface/environment-variables"
2727
/>
2828
<Card
2929
title="Status messages"
3030
desc="Use custom status messages to inform the user about the progress of your Actor run."
31-
to="/platform/actors/development/programming-interface/status-messages"
31+
to="/platform/building-actors/programming-interface/status-messages"
3232
/>
3333
<Card
3434
title="Status events"
3535
desc="Learn about system events sent to your Actor and how to benefit from them."
36-
to="/platform/actors/development/programming-interface/status-messages"
36+
to="/platform/building-actors/programming-interface/system-events"
3737
/>
3838
<Card
3939
title="Container web server"
4040
desc="Learn how to run a web server inside your Actor, which enables you to communicate with the outer world via UI and API."
41-
to="/platform/actors/development/programming-interface/container-web-server"
41+
to="/platform/building-actors/programming-interface/container-web-server"
4242
/>
4343
<Card
4444
title="Metamorph"
4545
desc="The metamorph operation transforms an Actor run into the run of another Actor with a new input."
46-
to="/platform/actors/development/programming-interface/metamorph"
46+
to="/platform/building-actors/programming-interface/metamorph"
4747
/>
4848
<Card
4949
title="Actor Standby"
5050
desc="Learn how to use Actors in lightweight mode as a blazingly fast API server."
51-
to="/platform/actors/development/programming-interface/standby"
51+
to="/platform/building-actors/programming-interface/standby"
5252
/>
5353
</CardGrid>

sources/platform/7-integrations/index.mdx

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -105,25 +105,25 @@ If you use one of the main integration platforms, Apify's support is here for yo
105105
<CardGrid>
106106
<Card
107107
title="Make"
108-
to="./integrations/make"
108+
to="/platform/integrations/make"
109109
imageUrl="/img/platform/integrations/make.svg"
110110
smallImage
111111
/>
112112
<Card
113113
title="Gumloop"
114-
to="./integrations/gumloop"
114+
to="/platform/integrations/gumloop"
115115
imageUrl="/img/platform/integrations/gumloop.svg"
116116
smallImage
117117
/>
118118
<Card
119119
title="Zapier"
120-
to="./integrations/zapier"
120+
to="/platform/integrations/zapier"
121121
imageUrl="/img/platform/integrations/zapier.svg"
122122
smallImage
123123
/>
124124
<Card
125125
title="Telegram (via Zapier)"
126-
to="./integrations/telegram"
126+
to="/platform/integrations/telegram"
127127
imageUrl="/img/platform/integrations/telegram.svg"
128128
smallImage
129129
/>
@@ -148,7 +148,7 @@ The Apify platform integrates with popular ETL and data pipeline services, enabl
148148
<CardGrid>
149149
<Card
150150
title="Keboola"
151-
to="./integrations/keboola"
151+
to="/platform/integrations/keboola"
152152
imageUrl="/img/platform/integrations/keboola.svg"
153153
smallImage
154154
/>
@@ -167,92 +167,92 @@ These integrations allow you to use Apify Actors as tools and data sources.
167167
<CardGrid>
168168
<Card
169169
title="CrewAI"
170-
to="./integrations/crewai"
170+
to="/platform/integrations/crewai"
171171
imageUrl="/img/platform/integrations/crewai.png"
172172
smallImage
173173
/>
174174
<Card
175175
title="LangGraph"
176-
to="./integrations/langgraph"
176+
to="/platform/integrations/langgraph"
177177
imageUrl="/img/platform/integrations/langgraph.png"
178178
smallImage
179179
/>
180180
<Card
181181
title="Mastra"
182-
to="./integrations/mastra"
182+
to="/platform/integrations/mastra"
183183
imageUrl="/img/platform/integrations/mastra.png"
184184
smallImage
185185
/>
186186
<Card
187187
title="Lindy"
188-
to="./integrations/lindy"
188+
to="/platform/integrations/lindy"
189189
imageUrl="/img/platform/integrations/lindy.png"
190190
smallImage
191191
/>
192192
<Card
193193
title="Langflow"
194-
to="./integrations/langflow"
194+
to="/platform/integrations/langflow"
195195
imageUrl="/img/platform/integrations/langflow.png"
196196
smallImage
197197
/>
198198
<Card
199199
title="Flowise"
200-
to="./integrations/flowise"
200+
to="/platform/integrations/flowise"
201201
imageUrl="/img/platform/integrations/flowise.png"
202202
smallImage
203203
/>
204204
<Card
205205
title="LangChain"
206-
to="./integrations/langchain"
206+
to="/platform/integrations/langchain"
207207
imageUrl="/img/platform/integrations/langchain.png"
208208
smallImage
209209
/>
210210
<Card
211211
title="LlamaIndex"
212-
to="./integrations/llama-index"
212+
to="/platform/integrations/llama-index"
213213
imageUrl="/img/platform/integrations/llamaindex.jpeg"
214214
smallImage
215215
/>
216216
<Card
217217
title="Haystack"
218-
to="./integrations/haystack"
218+
to="/platform/integrations/haystack"
219219
imageUrl="/img/platform/integrations/haystack.png"
220220
smallImage
221221
/>
222222
<Card
223223
title="Pinecone"
224-
to="./integrations/pinecone"
224+
to="/platform/integrations/pinecone"
225225
imageUrl="/img/platform/integrations/pinecone.svg"
226226
smallImage
227227
/>
228228
<Card
229229
title="Qdrant"
230-
to="./integrations/qdrant"
230+
to="/platform/integrations/qdrant"
231231
imageUrl="/img/platform/integrations/qdrant.svg"
232232
smallImage
233233
/>
234234
<Card
235235
title="Milvus"
236-
to="./integrations/milvus"
236+
to="/platform/integrations/milvus"
237237
imageUrl="/img/platform/integrations/milvus.svg"
238238
smallImage
239239
/>
240240
<Card
241241
title="MCP"
242-
to="./integrations/mcp"
242+
to="/platform/integrations/mcp"
243243
imageUrl="/img/platform/integrations/mcp-logo.png"
244244
imageUrlDarkTheme="/img/platform/integrations/mcp-logo-white.png"
245245
smallImage
246246
/>
247247
<Card
248248
title="AWS Bedrock"
249-
to="./integrations/aws_bedrock"
249+
to="/platform/integrations/aws_bedrock"
250250
imageUrl="/img/platform/integrations/aws-bedrock.png"
251251
smallImage
252252
/>
253253
<Card
254254
title="OpenAI Assistants"
255-
to="./integrations/openai-assistants"
255+
to="/platform/integrations/openai-assistants"
256256
imageUrl="/img/platform/integrations/openai.svg"
257257
imageUrlDarkTheme="/img/platform/integrations/openai-white.svg"
258258
smallImage

sources/platform/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import homepageContent from "./homepage_content.json";
2222
<Card
2323
title="Run Actor from Apify Store"
2424
desc="Apify Store is home to thousands of public Actors available to the Apify community. It's the easiest way for you to start with Apify."
25-
to="platform/using-actors"
25+
to="/platform/using-actors"
2626
/>
2727
<Card
2828
title="Build your own Actor"

0 commit comments

Comments
 (0)