Skip to content

Commit 6be9577

Browse files
committed
fixes broken link's
1 parent 25e46fa commit 6be9577

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/react/getting-started/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ The build output is minified, and the filenames include hashes for caching.
186186
Your app is now ready to be deployed! Check out our `Deployment` documentation to learn how to deploy your app to popular hosting providers.
187187

188188
:::tip Vite for React Development
189-
For an alternative and more modern approach to setting up your React projects, consider using Vite, a blazing-fast build tool. Learn more about getting started with React and Vite in our dedicated guide: [Getting Started with React and Vite](/blog/getting-started-with-vite).
189+
For an alternative and more modern approach to setting up your React projects, consider using Vite, a blazing-fast build tool. Learn more about getting started with React and Vite in our dedicated guide: [Getting Started with React and Vite](#).
190190
:::
191191

192192
## Conclusion

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ const config = {
229229
html: '<span class="nav-emoji">💰</span> Donate',
230230
},
231231
{
232-
to: "/blogs",
233-
html: '<span class="nav-emoji">📰</span> Blogs',
232+
to: "/blog",
233+
html: '<span class="nav-emoji">📰</span> Blog',
234234
},
235235
{
236236
type: "dropdown",

src/theme/Footer/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ const Footer: React.FC = () => {
185185
</li>
186186
<li>
187187
<Link
188-
to="/blogs"
188+
to="/blog"
189189
className="mb-3 inline-block text-base text-gray-300 hover:text-[--ifm-color-primary]"
190190
>
191-
All Blogs
191+
All Blog
192192
</Link>
193193
</li>
194194
</ul>
@@ -248,7 +248,7 @@ const Footer: React.FC = () => {
248248
</h4>
249249
<div className="flex flex-col gap-8">
250250
<Link
251-
to="/blog/getting-started-with-mern"
251+
to="#"
252252
className="group flex items-center gap-[22px]"
253253
>
254254
<div className="overflow-hidden rounded">
@@ -259,7 +259,7 @@ const Footer: React.FC = () => {
259259
</span>
260260
</Link>
261261
<Link
262-
to="/blog/getting-started-with-microservices"
262+
to="#"
263263
className="group flex items-center gap-[22px]"
264264
>
265265
<div className="overflow-hidden rounded">

0 commit comments

Comments
 (0)