Skip to content

Commit b5a4040

Browse files
authored
Merge pull request #331 from CodeHarborHub/dev-3
Debug and added new codes & Features
2 parents 9cf4e35 + dcf5cab commit b5a4040

19 files changed

+30
-12
lines changed

docs/cpp/_category_.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"label": "C++",
2+
"label": "CPP",
33
"position": 9,
44
"link": {
55
"type": "generated-index",
6-
"description": "C++ is a powerful, high-performance programming language developed by Bjarne Stroustrup in 1983. It extends the C language with object-oriented features, allowing for both low-level memory manipulation and high-level abstractions. C++ supports multiple programming paradigms, including procedural, object-oriented, and generic programming, making it versatile for various applications. It is widely used in system/software development, game programming, real-time simulations, and performance-critical applications. C++ offers robust standard libraries, enabling efficient and effective code reuse. Its combination of efficiency, flexibility, and rich feature set has made it a staple in the programming world."
6+
"description": "CPP(C++) is a powerful, high-performance programming language developed by Bjarne Stroustrup in 1983. It extends the C language with object-oriented features, allowing for both low-level memory manipulation and high-level abstractions. C++ supports multiple programming paradigms, including procedural, object-oriented, and generic programming, making it versatile for various applications. It is widely used in system/software development, game programming, real-time simulations, and performance-critical applications. C++ offers robust standard libraries, enabling efficient and effective code reuse. Its combination of efficiency, flexibility, and rich feature set has made it a staple in the programming world."
77
}
88
}

docusaurus.config.js

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,15 @@ const config = {
104104
value: `<div class="dropdown">
105105
<a class="dropbtn" href="/docs/"> Tutorials </a>
106106
<div class="dropdown-content">
107-
<a href="/docs/category/html/" class="nav__icons"> <img src="/icons/html-5.svg" alt="HTML" /> </a>
108-
<a href="/docs/" class="nav__icons"> <img src="/icons/css.svg" alt="CSS" /> </a>
109-
<a href="/docs/category/javascript/" class="nav__icons" > <img src="/icons/js.svg" alt="JavaScript" /> </a>
110-
<a href="/docs/category/react/" class="nav__icons"> <img src="/icons/jsx.svg" alt="React" /> </a>
111-
<a href="/docs/category/typescript/" class="nav__icons"> <img src="/icons/ts.svg" alt="TypeScript" /> </a>
112-
<a href="/docs/category/python/" class="nav__icons"> <img src="/icons/py.svg" alt="Python" /> </a>
113-
<a href="/docs/category/java/" class="nav__icons"> <img src="/icons/java.svg" alt="Java" /> </a>
114-
<a href="/docs/category/tailwind/" class="nav__icons"> <img src="/icons/tailwind.png" alt="Tailwind" /> </a>
107+
<a href="/docs/category/html/" class="nav__icons"> <img src="/icons/html-5.svg" title="HTML5" alt="HTML" /> </a>
108+
<a href="/docs/" class="nav__icons"> <img src="/icons/css.svg" title="CSS" alt="CSS" /> </a>
109+
<a href="/docs/category/javascript/" class="nav__icons" > <img src="/icons/js.svg" title="JavaScript" alt="JavaScript" /> </a>
110+
<a href="/docs/category/react/" class="nav__icons"> <img src="/icons/jsx.svg" title="React.Js" alt="React" /> </a>
111+
<a href="/docs/category/typescript/" class="nav__icons"> <img src="/icons/ts.svg" title="TypeScript" alt="TypeScript" /> </a>
112+
<a href="/docs/category/python/" class="nav__icons"> <img src="/icons/py.svg" title="Python" alt="Python" /> </a>
113+
<a href="/docs/category/java/" class="nav__icons"> <img src="/icons/java.svg" title="Java" alt="Java" /> </a>
114+
<a href="/docs/category/tailwind/" class="nav__icons"> <img src="/icons/tailwind-css.svg" title="Tailwind CSS" alt="Tailwind" /> </a>
115+
<a href="/docs/category/cpp/" class="nav__icons"> <img src="/icons/cpp.svg" title="CPP" alt="CPP" /> </a>
115116
</div>
116117
</div>`,
117118
},

sidebars.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ const sidebars = {
99
typescript: [{ type: 'autogenerated', dirName: 'typescript', }],
1010
react: [{ type: 'autogenerated', dirName: 'react', }],
1111
python: [{ type: 'autogenerated', dirName: 'python', }],
12+
cpp: [{ type: 'autogenerated', dirName: 'cpp', }],
13+
java: [{ type: 'autogenerated', dirName: 'java', }],
14+
html: [{ type: 'autogenerated', dirName: 'html', }],
15+
tailwindcss: [{ type: 'autogenerated', dirName: 'tailwind', }],
1216
};
1317

1418
export default sidebars;

src/components/HomePage/home.module.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
margin: 20px 10px;
77
border-radius: 10px;
88
}
9-
/* home.module.css */
109

1110

1211
.feature_item:hover ,.course_card:hover {
1312
scale: 1.03;
14-
box-shadow: 0 0px 20px #4be7e2;
13+
box-shadow: 0 0 0 1px #f2f2f24a, 0 0 10px 0 #f2f2f255;
1514
transition: scale 0.3s ease-in;
1615
}
1716

static/icons/ai-chat.svg

Lines changed: 1 addition & 0 deletions
Loading

static/icons/bootstrap-logo.svg

Lines changed: 1 addition & 0 deletions
Loading

static/icons/c#.svg

Lines changed: 1 addition & 0 deletions
Loading

static/icons/c.svg

Lines changed: 1 addition & 0 deletions
Loading

static/icons/cpp.svg

Lines changed: 1 addition & 0 deletions
Loading

static/icons/git.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)