Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nnisarggada committed Oct 1, 2023
1 parent e7ae7ac commit 06532b4
Showing 1 changed file with 70 additions and 17 deletions.
87 changes: 70 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,87 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
# Frontend Freaks Official Website

Welcome to the official repository for the Frontend Freaks website! This website is designed to help you learn and improve your frontend development skills. Whether you're a beginner looking to get started or an experienced developer seeking to stay updated with the latest trends, Frontend Freaks has something for you.

## Table of Contents

- [About Frontend Freaks](#about-frontend-freaks)
- [Tech Stack](#tech-stack)
- [Getting Started](#getting-started)
- [Contributing](#contributing)
- [License](#license)

## About Frontend Freaks

Frontend Freaks is a community-driven platform dedicated to frontend development. Our goal is to provide resources, tutorials, articles, and tools that empower frontend developers to excel in their craft. Whether you are interested in HTML, CSS, JavaScript, or any other frontend technology, you'll find valuable content here to enhance your skills.

## Tech Stack

The Frontend Freaks website is built using the following technologies:

- [NEXT.js](https://nextjs.org/): A popular React framework for building fast, modern web applications.
- [Tailwind CSS](https://tailwindcss.com/): A utility-first CSS framework that helps you quickly design and style your web components.
- [Node.js](https://nodejs.org/): A JavaScript runtime for server-side development.
- [npm](https://www.npmjs.com/): The package manager for JavaScript that manages project dependencies.

## Getting Started

First, run the development server:
To get started with the Frontend Freaks website, follow these steps:

### Prerequisites

- Node.js: Make sure you have Node.js installed on your computer. You can download it from [nodejs.org](https://nodejs.org/).

### Installation

1. Clone the repository to your local machine:

```bash
git clone https://github.com/frontend-freaks/frontend-freaks-website.git
```

2. Change into the project directory:

```bash
cd frontend-freaks-website
```

3. Install the project dependencies:

```bash
npm install
```

### Development

To run the development server and start working on the Frontend Freaks website, use the following command:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
This will start a local development server and open the website in your default web browser. You can make changes to the code, and the website will automatically reload to reflect your modifications.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
### Building for Production

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
When you are ready to build the website for production, use the following command:

## Learn More
```bash
npm run build
```

To learn more about Next.js, take a look at the following resources:
This will create a production-ready build of the website in the `build` directory.

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
## Contributing

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
We welcome contributions from the community to improve the Frontend Freaks website. If you'd like to contribute, please follow these guidelines:
## Deploy on Vercel
1. Fork this repository and clone it to your local machine.
2. Create a new branch for your changes: `git checkout -b feature/your-feature-name`
3. Make your changes, and ensure that the code passes any tests.
4. Commit your changes: `git commit -m "Add your commit message"`
5. Push your changes to your fork: `git push origin feature/your-feature-name`
6. Create a pull request to the `main` branch of this repository.
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
---
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Thank you for visiting the Frontend Freaks official repository. We hope you find our website valuable and enjoy learning and improving your frontend development skills with us! If you have any questions or suggestions, please feel free to open an issue or reach out to us. Happy coding!

0 comments on commit 06532b4

Please sign in to comment.