```javascript import React from 'react'; import { Link } from 'react-router-dom'; import Sidebar from '../components/Sidebar'; const Apps = () => { const apps = [ { id: 1, name: "Payment Gateway", type: "Web App", color: "purple", description: "Secure payment processing solution with multiple currency support.", updated: "2 days ago", image: "1" }, { id: 2, name: "USSD Banking", type: "USSD", color: "blue", description: "Mobile banking service accessible via USSD without internet.", updated: "1 week ago", image: "2" }, { id: 3, name: "Weather API", type: "API", color: "green", description: "Real-time weather data and forecasts API service.", updated: "3 days ago", image: "3" }, { id: 4, name: "Inventory System", type: "Web App", color: "yellow", description: "Comprehensive inventory management system with reporting.", updated: "yesterday", image: "4" }, { id: 5, name: "USSD Voting", type: "USSD", color: "red", description: "Mobile voting system accessible via USSD for elections.", updated: "2 weeks ago", image: "5" }, { id: 6, name: "SMS Gateway API", type: "API", color: "indigo", description: "Bulk SMS sending and receiving API with analytics.", updated: "5 days ago", image: "6" } ]; return (
{app.description}