Jarvis Roadmap is an innovative web application designed to provide an interactive and engaging way to navigate through learning paths and development roadmaps. Built with React, TypeScript, and modern web technologies, this tool helps users visualize and track their progress through various technical learning journeys.
- Interactive Timeline Visualization: Navigate through roadmap checkpoints with an intuitive timeline interface
- Responsive Design: Seamless experience across desktop and mobile devices
- Theme Customization: Toggle between light and dark themes for comfortable viewing
- Progress Tracking: Mark checkpoints as completed and track your learning journey
- Rich Content Support: Display detailed information including descriptions, requirements, and key concepts
- Modern UI Components: Built with Shadcn UI for a polished and consistent look
Before you begin, ensure you have the following installed:
- Node.js (v18.0.0 or higher)
- npm (v9.0.0 or higher) or yarn
- Git
# Clone the repository
git clone https://github.com/SreejanPersonal/Jarvis-Roadmap.git
# Navigate to the project directory
cd Jarvis-Roadmap
# Install dependencies
npm install
# or
yarn install
- Start the development server:
npm run dev
# or
yarn dev
- Open your browser and navigate to
http://localhost:5173
# Create a production build
npm run build
# or
yarn build
# Preview the production build
npm run preview
# or
yarn preview
Jarvis-Roadmap/
├── public/ # Static assets
├── src/ # Source code
│ ├── components/ # Reusable React components
│ ├── contexts/ # React context providers
│ ├── hooks/ # Custom React hooks
│ ├── lib/ # Utilities and data
│ ├── pages/ # Page components
│ └── App.tsx # Root component
├── package.json # Project dependencies and scripts
└── vite.config.ts # Vite configuration
Create a .env
file in the root directory with the following variables:
VITE_APP_TITLE=Jarvis Roadmap
VITE_APP_DESCRIPTION=Interactive Learning Path Navigator
-
Theme Configuration
- Modify
tailwind.config.ts
to customize colors, typography, and other design tokens - Update theme variables in
src/index.css
- Modify
-
Component Styling
- Use Tailwind CSS utility classes for component styling
- Customize Shadcn UI components in
src/components/ui
-
Roadmap Data
- Edit
src/lib/roadmap-data.ts
to modify or add new roadmap items - Follow the
RoadmapItem
interface for type safety
- Edit
// src/lib/roadmap-data.ts
export const roadmapData: RoadmapItem[] = [
{
id: 1,
title: "Getting Started with AI",
description: "Introduction to artificial intelligence concepts",
datePublished: "2024-03-20",
content: "Detailed content about AI basics...",
duration: "30 minutes",
tags: ["AI", "Machine Learning", "Basics"],
thumbnailUrl: "/placeholder.svg",
completed: false,
isLatest: true,
requirements: ["Basic programming knowledge"],
keyConcepts: ["AI fundamentals", "Machine Learning basics"]
}
// Add more items...
]
// src/contexts/ThemeContext.tsx
export const ThemeProvider = ({ children }: { children: React.ReactNode }) => {
const [theme, setTheme] = useState<'light' | 'dark'>('light');
return (
<ThemeContext.Provider value={{ theme, setTheme }}>
{children}
</ThemeContext.Provider>
);
};
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
- Follow the existing code style and conventions
- Write meaningful commit messages
- Update documentation for significant changes
- Add appropriate tests for new features
-
Development Server Won't Start
- Ensure all dependencies are installed
- Check for port conflicts
- Verify Node.js version compatibility
-
Styling Issues
- Clear browser cache
- Rebuild Tailwind CSS classes
- Check for CSS specificity conflicts
-
Type Errors
- Update TypeScript dependencies
- Check for missing type definitions
- Verify tsconfig.json settings
This project is licensed under the MIT License - see the LICENSE file for details.
For support, please:
- Check the GitHub Issues for existing problems and solutions
- Create a new issue if your problem isn't already reported
- Provide detailed information about your environment and the steps to reproduce the issue
- React - Frontend library
- TypeScript - Type safety
- Tailwind CSS - Styling
- Shadcn UI - UI components
- Vite - Build tool