Welcome to the WEWESWAP Landing Page repository.
This repository contains the source code for the WEWESWAP landing page, built using Next.js and React. The live website is available at weweswap.com.
The project follows a standard Next.js structure. Below is an overview of the main folders and files:
landing-page/
├── public/ # Static assets such as images, fonts, etc.
├── src/
│ ├── components/ # React components used throughout the project
│ ├── pages/ # Next.js pages
│ ├── styles/ # CSS and styling files
│ ├── utils/ # Utility functions
│ └── ...
├── .eslintrc.js # ESLint configuration
├── .gitignore # Git ignore file
├── next.config.js # Next.js configuration
├── package.json # Project dependencies and scripts
└── README.md # Project documentation (this file)
For a detailed view of the project structure and files, please visit the GitHub repository.
To get a local copy up and running, follow these steps.
-
Clone the repository:
git clone https://github.com/weweswap/landing-page.git cd landing-page
-
Install the dependencies:
npm install
or
yarn install
To start the development server, run:
npm run dev
or
yarn dev
Open http://localhost:3000 with your browser to see the result.
To build the project for production, run:
npm run build
or
yarn build
The output will be in the .next
folder, ready to be deployed.
We welcome contributions to improve WEWESWAP. To contribute, follow these steps:
- Fork the repository.
- Create your feature branch (
git checkout -b feature/YourFeature
). - Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature/YourFeature
). - Open a pull request.
Distributed under the MIT License. See LICENSE
for more information.
For any questions or feedback, please reach out to the project team through the issues page.