├── .gitignore ├── LICENSE ├── README.md ├── design ├── active-states.jpg ├── desktop-design.jpg ├── desktop-preview.jpg └── mobile-design.jpg ├── images ├── bg-hero-desktop.svg ├── bg-hero-mobile.svg ├── favicon-32x32.png ├── icon-email.svg ├── icon-location.svg ├── icon-phone.svg ├── illustration-flowing-conversation.svg ├── illustration-grow-together.svg ├── illustration-mockups.svg ├── illustration-your-users.svg └── logo.svg ├── index.html ├── style-guide.md └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | # Avoid accidental Sketch file upload 2 | ############################################### 3 | ## Please do not remove line 5 - thanks! 🙂 ## 4 | ############################################### 5 | *.sketch 6 | 7 | # Avoid accidental XD or Figma upload if you convert the design file 8 | ####################################################### 9 | ## Please do not remove lines 11 and 12 - thanks! 🙂 ## 10 | ####################################################### 11 | *.xd 12 | *.fig 13 | 14 | # Avoid your project being littered with annoying .DS_Store files! 15 | .DS_Store 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Sarthak Sachdev 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Huddle Landing Page 2 | 3 | ## Welcome! 👋 4 | 5 | ## Table of contents 6 | 7 | - [Overview](#overview) 8 | - [The challenge](#the-challenge) 9 | - [How to setup the project](#how-to-setup-the-project) 10 | - [Screenshot](#screenshot) 11 | - [Links](#links) 12 | - [My process](#my-process) 13 | - [Built with](#built-with) 14 | - [What I learned](#what-i-learned) 15 | - [Continued development](#continued-development) 16 | - [Useful resources](#useful-resources) 17 | - [Author](#author) 18 | - [Acknowledgments](#acknowledgments) 19 | 20 | ## Overview 21 | 22 | ### The challenge 23 | 24 | The challenge is to create the Huddle Landing Page, a modern and responsive landing page for the Huddle website. 25 | 26 | Users should be able to- 27 | - View the optimal layout for the site depending on their device's screen size. 28 | - See the hover states for all interactive elements on the page. 29 | 30 | ### How to setup the project 31 | 32 | To set up the project locally, follow these steps: 33 | 34 | 1. Clone the repository using GitHub Desktop or Git Bash: 35 | ```bash 36 | git clone https://github.com/SartHak-0-Sach/Huddle-landing-page_frontend_project.git 37 | ``` 38 | 2. Open the project folder in your code editor. 39 | 3. Run the project using a live server extension or deploy it using Netlify, Vercel, or another web hosting and deployment service. 40 | 41 | ### Screenshot 42 | 43 |  44 | 45 | ### Links 46 | 47 | - Solution URL: [GitHub Repository](https://github.com/SartHak-0-Sach/Huddle-landing-page_frontend_project) 48 | - Live Site URL: [Live Site](https://huddle-landing-page-frontend-app.netlify.app/) 49 | 50 | ## My process 51 | 52 | ### Built with 53 | 54 | - HTML5 55 | - CSS3 56 | 57 | You will find all the required assets in the `/images` folder. The assets are already optimized. 58 | 59 | There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts. 60 | 61 | ### What I learned 62 | 63 | This project is a simple straightforward project which tests how strong your fundamentals are in HTML and CSS to design various components of a web-page like hero section, header and most importantly the nav-bar with all its headings as shown- 64 | 65 | ```css 66 | nav { 67 | padding: 70px; 68 | display: flex; 69 | justify-content: space-between; 70 | } 71 | 72 | .btn-nav { 73 | cursor: pointer; 74 | font-weight: 600; 75 | border: none; 76 | outline: none; 77 | background-color: #ffffff; 78 | color: #000000; 79 | border-radius: 25px; 80 | box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); 81 | padding: 12px 50px 12px 50px; 82 | transition: all 0.3s ease 0s; 83 | } 84 | 85 | .btn-nav:hover { 86 | 87 | box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 88 | 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 89 | 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 90 | 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); 91 | } 92 | ``` 93 | 94 | ### Continued development 95 | 96 | The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of. 97 | 98 | These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day. 99 | 100 | ### Useful resources 101 | 102 | - [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can. 103 | - [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫 104 | - [mdn documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) - This is an amazing article which helped me finally understand promises, async and await syntax. I'd recommend it to anyone still learning this concept. 105 | 106 | ## Author 107 | 108 | Sarthak Sachdev 109 | - Website - [Sarthak Sachdev](https://itsmesarthak.netlify.app/) 110 | - LeetCode - [@sarthak_sachdev](https://leetcode.com/u/sarthak_sachdev/) 111 | - Twitter - [@sarthak_sach69](https://www.twitter.com/sarthak_sach69) 112 | 113 | ## Acknowledgments 114 | 115 | I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord for free is something that is unmatched by anyone else and need to be acknowledged for their efforts in improving me as a developer by suggesting the best practices in your respective tech stack. 116 | 117 | ## Got feedback for me? 118 | 119 | I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com. 120 | 121 | If you found this project helpful, consider sharing it with others to spread the knowledge! 122 | 123 | **Happy exploring Huddle!** 🚀🌟 -------------------------------------------------------------------------------- /design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Huddle-landing-page_frontend_project/7513fb5c5e0827d9dfece28b9d0f50ea7f56003c/design/active-states.jpg -------------------------------------------------------------------------------- /design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Huddle-landing-page_frontend_project/7513fb5c5e0827d9dfece28b9d0f50ea7f56003c/design/desktop-design.jpg -------------------------------------------------------------------------------- /design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Huddle-landing-page_frontend_project/7513fb5c5e0827d9dfece28b9d0f50ea7f56003c/design/desktop-preview.jpg -------------------------------------------------------------------------------- /design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Huddle-landing-page_frontend_project/7513fb5c5e0827d9dfece28b9d0f50ea7f56003c/design/mobile-design.jpg -------------------------------------------------------------------------------- /images/bg-hero-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bg-hero-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/all-my-frontend-mini-projects/Huddle-landing-page_frontend_project/7513fb5c5e0827d9dfece28b9d0f50ea7f56003c/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/icon-email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-location.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon-phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-flowing-conversation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-grow-together.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-mockups.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-your-users.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 13 | 14 | 15 | 16 | 20 | 21 | 25 | 26 | 30 | 31 |