{"id":25298789,"url":"https://github.com/kenzycodex/huddle-react","last_synced_at":"2025-10-08T07:22:32.123Z","repository":{"id":247225768,"uuid":"825310349","full_name":"kenzycodex/huddle-react","owner":"kenzycodex","description":"Huddle re-imagines the way we build communities. You have a voice, but so does your audience. Create connections with your users as you engage in genuine discussion.","archived":false,"fork":false,"pushed_at":"2024-07-07T13:03:49.000Z","size":1600,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T04:51:28.790Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://huddle-website-navy.vercel.app","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kenzycodex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-07T12:26:38.000Z","updated_at":"2024-07-07T13:03:52.000Z","dependencies_parsed_at":"2024-07-07T13:57:57.007Z","dependency_job_id":"d58511cd-bd30-43ac-bb23-c19d6551e158","html_url":"https://github.com/kenzycodex/huddle-react","commit_stats":null,"previous_names":["kenzycodex/huddle-react"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kenzycodex","download_url":"https://codeload.github.com/kenzycodex/huddle-react/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247563924,"owners_count":20958971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-13T04:51:30.514Z","updated_at":"2025-10-08T07:22:27.070Z","avatar_url":"https://github.com/kenzycodex.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Huddle Landing Page with Alternating Feature Blocks\r\n\r\nThis project is a landing page for Huddle, designed to showcase the benefits of building and engaging with a community online. The design alternates feature blocks to create a visually appealing and user-friendly layout. This project allowed me to enhance my coding skills by building a realistic and interactive web page.\r\n\r\n## Table of Contents\r\n\r\n- [Overview](#overview)\r\n  - [The Challenge](#the-challenge)\r\n  - [Screenshot](#screenshot)\r\n  - [Links](#links)\r\n- [My Process](#my-process)\r\n  - [Built With](#built-with)\r\n  - [What I Learned](#what-i-learned)\r\n  - [Continued Development](#continued-development)\r\n  - [Useful Resources](#useful-resources)\r\n- [Author](#author)\r\n- [Acknowledgments](#acknowledgments)\r\n\r\n## Overview\r\n\r\n### The Challenge\r\n\r\nUsers should be able to:\r\n\r\n- View the optimal layout for the site depending on their device's screen size\r\n- See hover states for all interactive elements on the page\r\n\r\n### Screenshot\r\n\r\n![Huddle Landing Page Screenshot](public/screenshot.png)\r\n\r\n### Links\r\n\r\n- [Solution URL](https://www.frontendmentor.io/solutions/huddle-landing-page-with-alternating-feature-blocks-BQkTe_QzED)\r\n- [Live Site URL](https://huddle-website-navy.vercel.app)\r\n\r\n## My Process\r\n\r\n### Built With\r\n\r\n- Semantic HTML5 markup\r\n- CSS custom properties\r\n- Flexbox\r\n- CSS Grid\r\n- Mobile-first workflow\r\n- [Font Awesome](https://fontawesome.com/) - Icon library\r\n\r\n### What I Learned\r\n\r\nWorking on this project helped reinforce my understanding of responsive design principles and the importance of creating an optimal user experience across different devices. Here are a few code snippets that highlight what I learned:\r\n\r\n**HTML Structure:**\r\n\r\n```html\r\n\u003cheader class=\"header\"\u003e\r\n    \u003cdiv class=\"logo\"\u003e\r\n        \u003cimg src=\"images/logo.svg\" alt=\"Huddle Logo\"\u003e\r\n    \u003c/div\u003e\r\n    \u003cdiv class=\"cta\"\u003e\r\n        \u003cbutton class=\"btn btn-primary\"\u003e \u003cspan\u003eTry It Free\u003c/span\u003e \u003c/button\u003e\r\n    \u003c/div\u003e\r\n\u003c/header\u003e\r\n```\r\n\r\n**CSS Styling:**\r\n\r\n```css\r\n.header {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    align-items: center;\r\n    padding: 20px;\r\n}\r\n\r\n.btn-primary {\r\n    background-color: hsl(322, 100%, 66%);\r\n    color: white;\r\n    border: none;\r\n    padding: 10px 20px;\r\n    cursor: pointer;\r\n}\r\n\r\n.btn-primary:hover {\r\n    background-color: hsl(322, 100%, 50%);\r\n}\r\n```\r\n\r\n**Responsive Design with Flexbox:**\r\n\r\n```css\r\n.features {\r\n    display: flex;\r\n    flex-direction: column;\r\n    gap: 40px;\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    .features {\r\n        flex-direction: row;\r\n        justify-content: space-between;\r\n    }\r\n}\r\n```\r\n\r\n### Continued Development\r\n\r\nIn future projects, I want to focus more on:\r\n\r\n- Enhancing accessibility features for users with disabilities\r\n- Implementing more advanced CSS animations to improve the user experience\r\n- Exploring and implementing CSS and JS frameworks and libraries to expand my skill set\r\n\r\n### Useful Resources\r\n\r\n- [MDN Web Docs](https://developer.mozilla.org/en-US/) - This is an invaluable resource for web developers, providing documentation and tutorials on HTML, CSS, and JavaScript.\r\n- [CSS-Tricks](https://css-tricks.com/) - A great site for CSS tips and tricks, with many helpful articles and tutorials.\r\n- [Bootstrap Documentation](https://getbootstrap.com/docs/4.5/getting-started/introduction/) - Comprehensive documentation for Bootstrap, which I used extensively in this project.\r\n\r\n## Author\r\n\r\n- Portfolio Website - [Kenzy Codex](https://kenzycodex.vercel.app)\r\n- Frontend Mentor - [@kenzycodex](https://www.frontendmentor.io/profile/kenzycodex)\r\n\r\n\r\n## Acknowledgments\r\n\r\nI would like to thank the Frontend Mentor community for their continuous support. This project was a great learning experience, and I appreciate the challenge it provided.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenzycodex%2Fhuddle-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenzycodex%2Fhuddle-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenzycodex%2Fhuddle-react/lists"}