Skip to content

Commit fa6f9d1

Browse files
committed
removed unuse code
1 parent ad8d677 commit fa6f9d1

File tree

30 files changed

+614
-1432
lines changed

30 files changed

+614
-1432
lines changed

docusaurus.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ const config = {
169169
value: `<div class="dropdown_grid">
170170
<a class="dropbtn" href="/docs/">Docs</a>
171171
<div class="dropdown-content">
172-
<a href="#" class="nav__icons"> <img src="/icons/html-5.svg" title="HTML5" alt="HTML" /> </a>
173-
<a href="#" class="nav__icons"> <img src="/icons/css.svg" title="CSS" alt="CSS" /> </a>
174-
<a href="#" class="nav__icons" > <img src="/icons/js.svg" title="JavaScript" alt="JavaScript" /> </a>
175-
<a href="#" class="nav__icons"> <img src="/icons/jsx.svg" title="React.Js" alt="React" /> </a>
172+
<a href="https://codeharborhub.github.io/tutorial/html/intro-html" class="nav__icons"> <img src="/icons/html-5.svg" title="HTML5" alt="HTML" /> </a>
173+
<a href="https://codeharborhub.github.io/tutorial/css/introduction/what-is-css" class="nav__icons"> <img src="/icons/css.svg" title="CSS" alt="CSS" /> </a>
174+
<a href="https://codeharborhub.github.io/tutorial/javascript/introduction-to-javascript/what-is-javascript" class="nav__icons" > <img src="/icons/js.svg" title="JavaScript" alt="JavaScript" /> </a>
175+
<a href="https://codeharborhub.github.io/tutorial/react/create-react-app" class="nav__icons"> <img src="/icons/jsx.svg" title="React.Js" alt="React" /> </a>
176176
<a href="#" class="nav__icons"> <img src="/icons/ts.svg" title="TypeScript" alt="TypeScript" /> </a>
177177
<a href="#" class="nav__icons"> <img src="/icons/py.svg" title="Python" alt="Python" /> </a>
178178
<a href="#" class="nav__icons"> <img src="/icons/tailwind-css.svg" title="Tailwind CSS" alt="Tailwind" /> </a>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export const fadeInUp = {
2+
initial: { opacity: 0, y: 60 },
3+
animate: { opacity: 1, y: 0 },
4+
transition: { duration: 0.6, ease: "easeOut" },
5+
};
6+
7+
export const staggerChildren = {
8+
animate: {
9+
transition: {
10+
staggerChildren: 0.1,
11+
},
12+
},
13+
};
14+
15+
export const scaleOnHover = {
16+
whileHover: { scale: 1.05 },
17+
whileTap: { scale: 0.95 },
18+
};

src/components/Aboutpage/chart.tsx

Lines changed: 0 additions & 171 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export const contributors = [
2+
{ name: "Ajay Dhangar", avatar: "https://github.com/ajay-dhangar.png" },
3+
{
4+
name: "Ishita Mukherjee",
5+
avatar: "https://github.com/Ishitamukherjee2004.png",
6+
},
7+
{ name: "Pavitraa G", avatar: "https://github.com/pavitraag.png" },
8+
{ name: "Sivaprasath", avatar: "https://github.com/sivaprasath2004.png" },
9+
{ name: "Hema Sree", avatar: "https://github.com/Hemav009.png" },
10+
];
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { Users, Lightbulb, Globe, TrendingUp } from "lucide-react";
2+
3+
export const coreValues = [
4+
{
5+
icon: Users,
6+
title: "Collaboration",
7+
description: "Learning together, growing together.",
8+
},
9+
{
10+
icon: Lightbulb,
11+
title: "Innovation",
12+
description: "Embracing new technologies and ideas.",
13+
},
14+
{
15+
icon: Globe,
16+
title: "Accessibility",
17+
description: "Education for everyone, everywhere.",
18+
},
19+
{
20+
icon: TrendingUp,
21+
title: "Growth",
22+
description: "Continuous learning and development.",
23+
},
24+
];
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import { BookOpen, FolderOpen, Code2, Map, MessageCircle, Zap } from "lucide-react";
2+
3+
export const offerings = [
4+
{
5+
icon: BookOpen,
6+
title: "Interactive Courses",
7+
description: "Comprehensive programming courses for all skill levels.",
8+
},
9+
{
10+
icon: FolderOpen,
11+
title: "Real-world Projects",
12+
description: "Hands-on projects mirroring industry standards.",
13+
},
14+
{
15+
icon: Code2,
16+
title: "Code Tutorials",
17+
description: "Step-by-step tutorials on modern technologies.",
18+
},
19+
{
20+
icon: Map,
21+
title: "Learning Roadmaps",
22+
description: "Structured paths to guide your growth.",
23+
},
24+
{
25+
icon: MessageCircle,
26+
title: "Vibrant Community",
27+
description: "Collaborate with peers, mentors, and professionals.",
28+
},
29+
{
30+
icon: Zap,
31+
title: "Quick References",
32+
description: "Cheat sheets for instant access to essentials.",
33+
},
34+
];
35+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export const teamMembers = [
2+
{
3+
name: "Ajay Dhangar",
4+
role: "Founder & CEO",
5+
avatar: "https://github.com/ajay-dhangar.png",
6+
social: {
7+
github: "https://github.com/ajay-dhangar",
8+
twitter: "https://twitter.com/CodesWithAjay",
9+
linkedin: "https://linkedin.com/in/ajay-dhangar",
10+
},
11+
},
12+
{
13+
name: "Mike Chen",
14+
role: "Community Manager",
15+
avatar: "https://images.pexels.com/photos/2379004/pexels-photo-2379004.jpeg?auto=compress&cs=tinysrgb&w=150&h=150&fit=crop",
16+
social: { github: "#", twitter: "#", linkedin: "#" },
17+
},
18+
{
19+
name: "Elena Rodriguez",
20+
role: "Content Creator",
21+
avatar: "https://images.pexels.com/photos/3851253/pexels-photo-3851253.jpeg?auto=compress&cs=tinysrgb&w=150&h=150&fit=crop",
22+
social: { github: "#", twitter: "#", linkedin: "#" },
23+
},
24+
{
25+
name: "David Kim",
26+
role: "Technical Mentor",
27+
avatar: "https://images.pexels.com/photos/3756681/pexels-photo-3756681.jpeg?auto=compress&cs=tinysrgb&w=150&h=150&fit=crop",
28+
social: { github: "#", twitter: "#", linkedin: "#" },
29+
},
30+
];

0 commit comments

Comments
 (0)