An open API service indexing awesome lists of open source software.

https://github.com/manvirheer/onpoint-landing


https://github.com/manvirheer/onpoint-landing

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Traffic Control Service Provider Website

A website for a traffic control service provider built with **Next.js** and **TypeScript**, featuring a modern design with vibrant red (`#DC0411`), offwhite (`#FFFFFF`), and accent yellow (`#F8D121`).

## Pages

- **Home:** Landing page with a hero section and call-to-action.
- **Services:** Overview of offered services.
- **Contact:** Contact form and essential details.

## Getting Started

### Clone the repository

```bash
git clone https://github.com/yourusername/onpoint-landing.git

### Install Dependencies
```bash
cd onpoint-landing
npm install
```

## Project Structure
```bash
my-traffic-control-app/
├── public/ // Static assets
├── src/
│ ├── pages/ // Next.js pages (index.tsx, services.tsx, contact.tsx)
│ ├── components/ // Reusable components (Header, Footer)
│ └── styles/ // Styling files
├── package.json
└── tsconfig.json
```

## Commit Message Guidelines

To keep our commit history clear and organized, please use the following prefixes:

- **chore:** For maintenance tasks, such as updating dependencies or build configurations.
- **bug:** For fixes that address specific issues in the code.
- **refact:** For changes that restructure code without altering its functionality.
- **misc:** For miscellaneous changes that don't fit into other categories.
- **docs:** For updates or improvements to documentation.

**Examples:**

- `chore: update dependency versions`
- `bug: fix user authentication issue`
- `refact: simplify header component structure`
- `misc: adjust styling for better accessibility`
- `docs: update installation instructions in README`