From 791321cc73011794a19ae6d87395db350d02a97c Mon Sep 17 00:00:00 2001 From: nnisarggada Date: Sun, 1 Oct 2023 20:13:39 +0530 Subject: [PATCH 1/5] updated README.md --- README.md | 87 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 70 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index f4da3c4..e8e7bbb 100644 --- a/README.md +++ b/README.md @@ -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 `master` 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! From e7ae7ac81cfa9a06759c54ad46790edaf26143fb Mon Sep 17 00:00:00 2001 From: nnisarggada Date: Sun, 1 Oct 2023 20:14:44 +0530 Subject: [PATCH 2/5] [Hit return to continue] This reverts commit 791321cc73011794a19ae6d87395db350d02a97c. --- README.md | 87 +++++++++++-------------------------------------------- 1 file changed, 17 insertions(+), 70 deletions(-) diff --git a/README.md b/README.md index e8e7bbb..f4da3c4 100644 --- a/README.md +++ b/README.md @@ -1,87 +1,34 @@ -# 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. +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). ## Getting Started -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: +First, run the development server: ```bash npm run dev +# or +yarn dev +# or +pnpm dev ``` -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. +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. -### Building for Production +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. -When you are ready to build the website for production, use the following command: +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. -```bash -npm run build -``` +## Learn More -This will create a production-ready build of the website in the `build` directory. +To learn more about Next.js, take a look at the following resources: -## Contributing +- [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. -We welcome contributions from the community to improve the Frontend Freaks website. If you'd like to contribute, please follow these guidelines: +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! -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 `master` branch of this repository. +## Deploy on Vercel ---- +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. -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! +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. From 06532b424067079f287f91b3453351e76d45903d Mon Sep 17 00:00:00 2001 From: nnisarggada Date: Sun, 1 Oct 2023 20:16:27 +0530 Subject: [PATCH 3/5] updated readme --- README.md | 87 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 70 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index f4da3c4..387a21c 100644 --- a/README.md +++ b/README.md @@ -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! From 167045a329b9516b0d5e05c2966d83f9ba1886f3 Mon Sep 17 00:00:00 2001 From: Nnisarg Gada Date: Sun, 1 Oct 2023 20:34:14 +0530 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 387a21c..e8e7bbb 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ We welcome contributions from the community to improve the Frontend Freaks websi 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. +6. Create a pull request to the `master` branch of this repository. --- From c1ed08fc70d0a32ee696c1bb49496d239c89cf3b Mon Sep 17 00:00:00 2001 From: Nnisarg Gada Date: Sun, 1 Oct 2023 23:07:03 +0530 Subject: [PATCH 5/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e8e7bbb..6c4312f 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ 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. +- [ContentLayer](https://contentlayer.dev/): A content management system (CMS) or data layer used to manage dynamic content and data-driven pages on the website. - [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.