๐Ÿ“ฆ EqualifyEverything / equalify-reflow-docs

๐Ÿ“„ README.md ยท 106 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106# UIC Tech Solutions Open Source Fund Website

This repository contains the source code for the UIC Tech Solutions Open Source Fund (OSF) website. The website serves to inform visitors about the fund, aggregate open micro-grants from supported projects, and solicit partnerships.

**Live Site:** [https://uic-osf.github.io/website/](https://uic-osf.github.io/website/)

## ๐Ÿš€ Overview

The UIC OSF website is a modern, responsive React application designed to highlight the fund's mission: supporting technology projects that work toward measurable public benefit.

**Key Features:**
*   **Dynamic Micro-Grant Aggregation:** Fetches and displays open issues tagged with "micro-grant" from GitHub repositories (1111, AI Leaders, Equalify).
*   **Project Showcase:** Highlights supported Open Source projects.
*   **Team Section:** Introduces key team members.
*   **Partnership Solicitation:** Encourages organizations to partner with the fund.
*   **Accessibility:** Built with accessibility in mind, using semantic HTML and high-contrast colors.

## ๐Ÿ› ๏ธ Tech Stack

*   **Framework:** [React](https://react.dev/) + [Vite](https://vitejs.dev/)
*   **Language:** [TypeScript](https://www.typescriptlang.org/)
*   **Styling:** [Tailwind CSS](https://tailwindcss.com/)
*   **Icons:** [Lucide React](https://lucide.dev/)
*   **Animations:** [Framer Motion](https://www.framer.com/motion/)
*   **Deployment:** [GitHub Pages](https://pages.github.com/)

## ๐Ÿ’ป Getting Started

Follow these steps to run the project locally on your machine.

### Prerequisites

*   Node.js (v18 or higher recommended)
*   npm (comes with Node.js)

### Installation

1.  **Clone the repository:**
    ```bash
    git clone https://github.com/UIC-OSF/website.git
    cd website
    ```

2.  **Install dependencies:**
    ```bash
    npm install
    ```

3.  **Run the development server:**
    ```bash
    npm run dev
    ```
    The app should now be running at `http://localhost:5173` (or similar).

## ๐Ÿ“ฆ Building and Deploying

### Build for Production

To create a production-ready build:

```bash
npm run build
```

This will generate a `dist` folder containing the compiled assets.

### Deploy to GitHub Pages
 
This project is configured to deploy to GitHub Pages automatically via GitHub Actions whenever changes are pushed to the `main` branch.
 
The deployment workflow is defined in `.github/workflows/deploy.yml`.


## ๐Ÿ“‚ Project Structure

```
uic-osf/
โ”œโ”€โ”€ public/              # Static assets
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ components/      # Reusable UI components (Hero, MicroGrants, etc.)
โ”‚   โ”œโ”€โ”€ App.tsx          # Main application component
โ”‚   โ”œโ”€โ”€ main.tsx         # Entry point
โ”‚   โ””โ”€โ”€ index.css        # Global styles and Tailwind directives
โ”œโ”€โ”€ index.html           # HTML template
โ”œโ”€โ”€ package.json         # Project dependencies and scripts
โ”œโ”€โ”€ tailwind.config.js   # Tailwind CSS configuration
โ”œโ”€โ”€ vite.config.ts       # Vite configuration
โ””โ”€โ”€ README.md            # Project documentation
```

## ๐Ÿค Contributing

1.  Fork the repository.
2.  Create a new branch (`git checkout -b feature/YourFeature`).
3.  Commit your changes (`git commit -m 'Add some feature'`).
4.  Push to the branch (`git push origin feature/YourFeature`).
5.  Open a Pull Request.

## ๐Ÿ“ Content Guidelines

**IMPORTANT:** "Open Source" is religion. It must ALWAYS be capitalized as "Open Source" (capital O, capital S, no hyphen). This rule applies to all content, documentation, and source code comments.

## ๐Ÿ“„ License

[MIT License](LICENSE) (or appropriate license if defined)