Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ytlab23/cognosolve
ai - consulting Landing
https://github.com/ytlab23/cognosolve
framer-motion javascript reactjs scroll tailwindcss
Last synced: about 1 month ago
JSON representation
ai - consulting Landing
- Host: GitHub
- URL: https://github.com/ytlab23/cognosolve
- Owner: ytlab23
- Created: 2024-04-25T06:58:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-28T07:30:39.000Z (10 months ago)
- Last Synced: 2024-04-28T08:45:44.873Z (10 months ago)
- Topics: framer-motion, javascript, reactjs, scroll, tailwindcss
- Language: JavaScript
- Homepage: https://cognosolve.vercel.app
- Size: 3.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Consulting App
This is a simple consulting web application built with React, Vite, and Tailwind CSS.
## Getting Started
To get started with this project, follow these steps:
- Clone the repository to your local machine:
```bash
git clone
```- Navigate to the project directory:
```bash
cd consulting-app
```- Install dependencies:
```bash
npm install
```- Start the development server:
```bash
npm run dev
```This will start the development server using Vite.
- Open your browser and visit [http://localhost:3000](http://localhost:3000) to view the app.
## Technologies Used
- [React](https://reactjs.org/) - JavaScript library for building user interfaces.
- [Vite](https://vitejs.dev/) - Next generation frontend build tool.
- [Tailwind CSS](https://tailwindcss.com/) - Utility-first CSS framework for rapid UI development.## Folder Structure
```
consulting-app/
├── public/ # Static files
├── src/ # Source files
│ ├── assets/ # Images, icons, etc.
│ ├── components/ # React components
│ ├── constants/ # Constants and data
│ ├── styles/ # Global styles
│ └── App.jsx # Main component
├── .gitignore # Git ignore file
├── package.json # Node.js dependencies
├── README.md # Project README file
└── vite.config.js # Vite configuration file
```