https://github.com/manvirheer/onpoint-landing
https://github.com/manvirheer/onpoint-landing
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/manvirheer/onpoint-landing
- Owner: manvirheer
- Created: 2025-03-06T00:37:54.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-07T03:08:40.000Z (7 months ago)
- Last Synced: 2025-03-07T03:26:45.704Z (7 months ago)
- Language: TypeScript
- Size: 8.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`