AI-powered career intelligence platform for South African youth with multilingual support
# Ubuntu AI Career Platform
A comprehensive AI-powered career development platform built with modern web technologies.
## ?? Features
- **AI Career Guidance** - Personalized career recommendations
- **Skill Assessment** - AI-powered skill evaluation
- **Job Matching** - Intelligent job recommendations
- **Learning Paths** - Customized learning recommendations
- **Real-time Chat** - AI-powered career counseling
## ??? Tech Stack
### Frontend
- **React** - Modern UI framework
- **Vite** - Fast build tool
- **Tailwind CSS** - Utility-first CSS framework
- **ES6+** - Modern JavaScript
### Backend
- **Node.js** - Runtime environment
- **Express.js** - Web application framework
- **CORS** - Cross-origin resource sharing
## ?? Project Structure
ubuntu-ai-career-platform/
+-- frontend/ # React frontend application
¦ +-- src/ # Source code
¦ +-- public/ # Static assets
¦ +-- package.json # Frontend dependencies
¦ +-- vite.config.js # Vite configuration
+-- backend/ # Express.js backend server
¦ +-- server.js # Main server file
¦ +-- package.json # Backend dependencies
+-- .gitignore # Git ignore rules
+-- README.md # Project documentation
## ?? Quick Start
### Prerequisites
- Node.js (v18 or higher)
- npm or yarn
### Installation
1. **Clone the repository**
\`\`\`bash
git clone
github.com
cd ubuntu-ai-career-platform
\`\`\`
2. **Setup Frontend**
\`\`\`bash
cd frontend
npm install
npm run dev
\`\`\`
Frontend will run on:
localhost
3. **Setup Backend**
\`\`\`bash
cd backend
npm install
node server.js
\`\`\`
Backend will run on:
localhost
## ?? Available Scripts
### Frontend Scripts
\`\`\`bash
cd frontend
npm run dev # Start development server
npm run build # Build for production
npm run preview # Preview production build
\`\`\`
### Backend Scripts
\`\`\`bash
cd backend
node server.js # Start backend server
npm start # Start server (if configured)
\`\`\` …