{"id":22895687,"url":"https://github.com/aj1732/easy-reach","last_synced_at":"2026-05-05T14:33:33.789Z","repository":{"id":253707631,"uuid":"844245402","full_name":"AJ1732/easy-reach","owner":"AJ1732","description":"Welcome to EazyReach, where resources meet opportunity, A revolutionary platform designed to empower citizens, reduce  poverty, and tackle youth unemployment in Nigeria.","archived":false,"fork":false,"pushed_at":"2024-11-24T23:37:34.000Z","size":6860,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T23:38:02.778Z","etag":null,"topics":["clsx","cva","react-router-v6","reactjs","tailwind-merge","tailwindcss","typescript","vite"],"latest_commit_sha":null,"homepage":"https://1732-eazy-reach.netlify.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AJ1732.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-18T20:15:27.000Z","updated_at":"2024-11-24T23:37:37.000Z","dependencies_parsed_at":"2024-10-26T23:41:29.930Z","dependency_job_id":"77b44444-b3c7-487b-91a5-c5392f20fdf3","html_url":"https://github.com/AJ1732/easy-reach","commit_stats":null,"previous_names":["aj1732/easy-reach"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AJ1732/easy-reach","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AJ1732%2Feasy-reach","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AJ1732%2Feasy-reach/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AJ1732%2Feasy-reach/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AJ1732%2Feasy-reach/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AJ1732","download_url":"https://codeload.github.com/AJ1732/easy-reach/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AJ1732%2Feasy-reach/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32653581,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clsx","cva","react-router-v6","reactjs","tailwind-merge","tailwindcss","typescript","vite"],"created_at":"2024-12-13T23:31:25.300Z","updated_at":"2026-05-05T14:33:33.772Z","avatar_url":"https://github.com/AJ1732.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EazyReach\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Folder Structure](#folder-structure)\n- [Components Overview](#components-overview)\n- [Getting Started](#getting-started)\n\n## Introduction\n\nWelcome to **EazyReach**, where resources meet opportunity, A revolutionary platform designed to empower citizens, reduce poverty, and tackle youth unemployment in Nigeria. This project is a modern web application, with the user interface built using [React](https://reactjs.org/) and [TypeScript](https://www.typescriptlang.org/) and other frontend technologies. The project follows a well-organized structure to ensure scalability and maintainability.\n\n## Folder Structure\n\nThe project is organized into the following directories:\n\n```\n.\n├── src\n│   ├── application\n│   │   ├── DashboardApp\n│   │   │   └── index.tsx\n│   │   ├── LandingPage\n│   │   │   └── index.tsx\n│   │   └── index.tsx\n│   ├── assets\n│   │   ├── fonts\n│   │   └── react.svg\n│   ├── components\n│   │   ├── layout\n│   │   │   ├── Footer\n│   │   │   └── Navbar\n│   │   ├── ui\n│   │   │   ├── ButtonLink\n│   │   │   ├── Cards\n│   │   │   └── Headings\n│   │   └── index.tsx\n│   ├── routes\n│   │   └── router.tsx\n│   ├── types\n│   │   ├── buttonlink.ts\n│   │   ├── card\n│   │   │   ├── articlecard.ts\n│   │   │   ├── blogcard.ts\n│   │   │   ├── featurecard.ts\n│   │   │   └── teamcard.ts\n│   │   └── headings.ts\n│   ├── utils\n│   │   └── cn.ts\n│   ├── App.tsx\n│   ├── index.css\n│   ├── main.tsx\n│   ├── vite-env.d.ts\n│   └── ...\n├── public\n│   └── ...\n├── .gitignore\n├── package-lock.json\n├── package.json\n├── netlify.toml\n├── ...\n```\n\n### Key Directories\n\n- **`src/application`**: Contains the main application pages or modules, such as the Dashboard and Landing Page.\n- **`src/assets`**: Holds static assets like fonts and images.\n- **`src/components`**: \n  - **`layout`**: Contains layout components such as the `Footer` and `Navbar`.\n  - **`ui`**: Contains reusable UI components, organized into subdirectories like `ButtonLink`, `Cards`, and `Headings`.\n- **`src/routes`**: Manages the application's routing.\n- **`src/types`**: TypeScript type definitions, particularly for card components like `articlecard.ts`, `blogcard.ts`, etc.\n- **`src/utils`**: Utility functions, such as `cn.ts` for handling class names.\n- **`src/index.css`**: Global CSS for the project.\n\n## Components Overview\n\n### Layout Components\n- **Footer**: The footer component used across the application.\n- **Navbar**: The navigation bar for the application.\n\n### UI Components\n- **ButtonLink**: A reusable button component that handles click events and navigation links.\n- **Cards**: \n  - **ArticleCard**: Displays information about articles.\n  - **BlogCard**: Specifically designed for blog posts.\n  - **FeatureCard**: Highlights features of the application.\n  - **TeamCard**: Showcases team members.\n- **Headings**: Custom heading components with additional styles or functionalities.\n\n## Getting Started\n\nTo run this project locally, follow these steps:\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/AJ1732/easy-reach.git\n   cd easy-reach\n   ```\n\n2. **Install dependencies**:\n   ```bash\n   npm install\n   ```\n\n3. **Run the development server**:\n   ```bash\n   npm run dev\n   ```\n\n4. **Open the app**:\n   - Visit `http://localhost:5173` in your browser.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faj1732%2Feasy-reach","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faj1732%2Feasy-reach","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faj1732%2Feasy-reach/lists"}