Skip to content

Commit 98abbb7

Browse files
committed
update site
1 parent 4650b69 commit 98abbb7

File tree

10 files changed

+29
-335
lines changed

10 files changed

+29
-335
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Learn Basics
2+
3+
## What are version control system

docs/css/project-practicals/animation-practice.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tags:
2121

2222
Animations are the secret ingredient that transforms a static webpage into an **engaging and memorable user experience**. This practical session is dedicated to solidifying your understanding of CSS **Transitions**, **Transforms**, and **Keyframe Animations** by applying them to real-world components.
2323

24-
Before starting, ensure you are familiar with the concepts in the [Transitions and Animations](/docs/category/transitions--animations) section.
24+
Before starting, ensure you are familiar with the concepts in the [Transitions and Animations](/category/transitions--animations) section.
2525

2626
<AdsComponent />
2727
<br />

docs/css/project-practicals/responsive-design-practice.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Responsive Web Design (RWD) is a crucial skill in modern frontend development. I
99

1010
This practical session will guide you through implementing the core principles of RWD, focusing on **Media Queries**, **Fluid Layouts**, and the **Mobile-First** strategy.
1111

12-
Before starting, ensure you are familiar with the concepts in the [Responsiveness](/tutorial/docs/category/responsiveness) section.
12+
Before starting, ensure you are familiar with the concepts in the [Responsiveness](/category/responsiveness) section.
1313

1414
<AdsComponent />
1515
<br />

docs/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ Select a technology below to dive into our structured tutorials. Each path is de
5858

5959
<DocsCards>
6060

61-
<DocsCard header="HTML" href="/docs/category/html/" icon="/icons/html-5.svg">
61+
<DocsCard header="HTML" href="/category/html/" icon="/icons/html-5.svg">
6262
<p>Learn the building blocks of the web — HTML. Understand tags, attributes, forms, and layout fundamentals to create structured webpages.</p>
6363
</DocsCard>
6464

65-
<DocsCard header="CSS" href="/docs/css/introduction" icon="/icons/css.svg">
65+
<DocsCard header="CSS" href="/css/introduction" icon="/icons/css.svg">
6666
<p>Master styling with CSS. Learn Flexbox, Grid, animations, and responsive design techniques for beautiful interfaces.</p>
6767
</DocsCard>
6868

69-
<DocsCard header="JavaScript" href="/docs/javascript/introduction-to-javascript/what-is-js" icon="/icons/js.svg">
69+
<DocsCard header="JavaScript" href="/javascript/introduction-to-javascript/what-is-js" icon="/icons/js.svg">
7070
<p>From basics to advanced — learn JavaScript programming, DOM manipulation, and ES6+ features to bring interactivity to your projects.</p>
7171
</DocsCard>
7272

@@ -102,7 +102,7 @@ Select a technology below to dive into our structured tutorials. Each path is de
102102
<p>Learn NoSQL database concepts with MongoDB. Store, query, and manage data efficiently for modern applications.</p>
103103
</DocsCard>
104104

105-
<DocsCard header="AI & Machine Learning" href="/docs/machine-learning" icon="/icons/ai-chat.svg">
105+
<DocsCard header="AI & Machine Learning" href="/machine-learning" icon="/icons/ai-chat.svg">
106106
<p>Explore artificial intelligence, machine learning, and neural networks with beginner-friendly examples.</p>
107107
</DocsCard>
108108

docs/technical-writer/advanced/localization-and-accessibility.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Most modern Docs-as-Code platforms support localization through external files.
2727

2828
1. **Extract Strings:** Your content management system (or localization tool) extracts the translatable text (strings) from your Markdown files (e.g., `.mdx`) and places them into key-value files (e.g., `.json`, `.po`, or `.xliff`).
2929
2. **Translation:** These string files are sent to human translators or machine translation services.
30-
3. **Insertion:** The translated strings are loaded back into the documentation build process, creating separate language sites (e.g., `/docs/en`, `/docs/de`, `/docs/ja`).
30+
3. **Insertion:** The translated strings are loaded back into the documentation build process, creating separate language sites (e.g., `/en`, `/de`, `/ja`).
3131

3232
:::warning Context is King
3333
When working with translators, provide **context**. If a string is "Open," specify whether it's the verb (e.g., "Open the file") or the adjective (e.g., "The API is Open"). This avoids grammatical errors in languages with gendered nouns.

docs/technical-writer/resources/portfolio-building.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Aim for 3–5 high-quality projects. A few excellent, polished examples are infi
5151
<LinkCard
5252
title="Tip: The Live Project"
5353
description="If you contribute documentation to an Open Source project, that merged Pull Request (PR) is your single most powerful portfolio piece—it's real-world proof of collaboration and quality."
54-
link="/tutorial/docs/technical-writer/advanced/open-source-contributions"
54+
link="/tutorial/technical-writer/advanced/open-source-contributions"
5555
icon="code"
5656
/>
5757

docs/technical-writer/resources/templates-and-samples.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ icon="book"
170170
<LinkCard
171171
title="Docusaurus Official Templates"
172172
description="Review the source code of the official Docusaurus templates on GitHub. They provide excellent examples of MDX usage, sidebar structure, and front matter."
173-
link="https://www.google.com/search?q=https://docusaurus.io/docs/next/installation%23scaffolding-your-site"
173+
link="https://docusaurus.io/docs/next/installation#scaffolding-your-site"
174174
icon="code"
175175
/>
176176

docusaurus.config.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const config = {
3636
({
3737
// debug: true,
3838
docs: {
39-
routeBasePath: "docs",
39+
routeBasePath: "/",
4040
sidebarPath: "./sidebars.ts",
4141
editUrl: "https://github.com/codeharborhub/tutorial/edit/main/",
4242
remarkPlugins: [remarkMath],
@@ -140,10 +140,10 @@ const config = {
140140
<div class="mega-menu-column">
141141
<h3>🚀 Foundations</h3>
142142
<hr style="margin: 0.5rem 0; opacity: 0.4;">
143-
<a href="#">🐣 Absolute Beginner</a>
143+
<a href="/tutorial/absolute-beginners/">🐣 Absolute Beginner</a>
144144
<a href="#">🏛️ Computer Science</a>
145145
<a href="#">💻 Languages & Platforms</a>
146-
<a href="/tutorial/docs/git/introduction">🌿 Git & GitHub</a>
146+
<a href="/tutorial/git/introduction">🌿 Git & GitHub</a>
147147
</div>
148148
149149
<div class="mega-menu-column">
@@ -191,12 +191,12 @@ const config = {
191191
// html: '<span class="nav-emoji">📝</span> Blog',
192192
// position: "right",
193193
// },
194-
// {
195-
// href: "https://github.com/codeharborhub",
196-
// position: "right",
197-
// className: "header-github-link",
198-
// "aria-label": "GitHub repository",
199-
// },
194+
{
195+
href: "https://github.com/codeharborhub",
196+
position: "right",
197+
className: "header-github-link",
198+
"aria-label": "GitHub repository",
199+
},
200200
],
201201
},
202202
footer: {

sidebars.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -257,39 +257,39 @@ const sidebars: SidebarsConfig = {
257257
{
258258
type: "link",
259259
label: "CSS",
260-
href: "/docs/css/introduction",
260+
href: "/css/introduction",
261261
},
262262

263263
// Machine LearningTutorial Structure
264264

265265
{
266266
type: "link",
267267
label: "Machine Learning",
268-
href: "/docs/machine-learning/",
268+
href: "/machine-learning/",
269269
},
270270

271271
// JavaScript Tutorial Structure
272272

273273
{
274274
type: "link",
275275
label: "JavaScript",
276-
href: "/docs/javascript/introduction-to-javascript/what-is-js",
276+
href: "/javascript/introduction-to-javascript/what-is-js",
277277
},
278278

279279
// Git Tutorial Structure
280280

281281
{
282282
type: "link",
283283
label: "Git",
284-
href: "/docs/git/introduction",
284+
href: "/git/introduction",
285285
},
286286

287287
// GitHub Tutorial Structure
288288

289289
{
290290
type: "link",
291291
label: "GitHub",
292-
href: "/docs/github/introduction-to-github",
292+
href: "/github/introduction-to-github",
293293
},
294294

295295
// React Tutorial Structure
@@ -464,21 +464,21 @@ const sidebars: SidebarsConfig = {
464464
{
465465
type: "link",
466466
label: "Cybersecurity",
467-
href: "/docs/cybersecurity/",
467+
href: "/cybersecurity/",
468468
},
469469

470470
// Internet
471471
{
472472
type: "link",
473473
label: "Internet",
474-
href: "/docs/internet/introduction/",
474+
href: "/internet/introduction/",
475475
},
476476
// Technical Writer
477477

478478
{
479479
type: "link",
480480
label: "Technical Writer",
481-
href: "/docs/technical-writer/",
481+
href: "/technical-writer/",
482482
},
483483
],
484484

0 commit comments

Comments
 (0)