{"id":25298787,"url":"https://github.com/kenzycodex/huddle","last_synced_at":"2025-04-06T22:42:53.064Z","repository":{"id":246956741,"uuid":"824719705","full_name":"kenzycodex/huddle","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-05T20:11:44.000Z","size":1377,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T04:51:28.795Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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-05T19:17:52.000Z","updated_at":"2024-07-05T20:11:46.000Z","dependencies_parsed_at":"2024-07-06T01:15:08.192Z","dependency_job_id":"61e17468-9785-4a1c-b716-5e75898a1ecb","html_url":"https://github.com/kenzycodex/huddle","commit_stats":null,"previous_names":["kenzycodex/huddle"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenzycodex%2Fhuddle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kenzycodex","download_url":"https://codeload.github.com/kenzycodex/huddle/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.322Z","updated_at":"2025-04-06T22:42:53.032Z","avatar_url":"https://github.com/kenzycodex.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Huddle Landing Page with Alternating Feature Blocks\n\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.\n\n## Table of Contents\n\n- [Overview](#overview)\n  - [The Challenge](#the-challenge)\n  - [Screenshot](#screenshot)\n  - [Links](#links)\n- [My Process](#my-process)\n  - [Built With](#built-with)\n  - [What I Learned](#what-i-learned)\n  - [Continued Development](#continued-development)\n  - [Useful Resources](#useful-resources)\n- [Author](#author)\n- [Acknowledgments](#acknowledgments)\n\n## Overview\n\n### The Challenge\n\nUsers should be able to:\n\n- View the optimal layout for the site depending on their device's screen size\n- See hover states for all interactive elements on the page\n\n### Screenshot\n\n![Huddle Landing Page Screenshot](./images/screenshot.png)\n\n### Links\n\n- [Solution URL](https://www.frontendmentor.io/solutions/huddle-landing-page-with-alternating-feature-blocks-BQkTe_QzED)\n- [Live Site URL](https://kenzycodex.github.io/huddle/)\n\n## My Process\n\n### Built With\n\n- Semantic HTML5 markup\n- CSS custom properties\n- Flexbox\n- CSS Grid\n- Mobile-first workflow\n- [Font Awesome](https://fontawesome.com/) - Icon library\n\n### What I Learned\n\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:\n\n**HTML Structure:**\n\n```html\n\u003cheader class=\"header\"\u003e\n    \u003cdiv class=\"logo\"\u003e\n        \u003cimg src=\"images/logo.svg\" alt=\"Huddle Logo\"\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"cta\"\u003e\n        \u003cbutton class=\"btn btn-primary\"\u003e \u003cspan\u003eTry It Free\u003c/span\u003e \u003c/button\u003e\n    \u003c/div\u003e\n\u003c/header\u003e\n```\n\n**CSS Styling:**\n\n```css\n.header {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding: 20px;\n}\n\n.btn-primary {\n    background-color: hsl(322, 100%, 66%);\n    color: white;\n    border: none;\n    padding: 10px 20px;\n    cursor: pointer;\n}\n\n.btn-primary:hover {\n    background-color: hsl(322, 100%, 50%);\n}\n```\n\n**Responsive Design with Flexbox:**\n\n```css\n.features {\n    display: flex;\n    flex-direction: column;\n    gap: 40px;\n}\n\n@media (min-width: 768px) {\n    .features {\n        flex-direction: row;\n        justify-content: space-between;\n    }\n}\n```\n\n### Continued Development\n\nIn future projects, I want to focus more on:\n\n- Enhancing accessibility features for users with disabilities\n- Implementing more advanced CSS animations to improve the user experience\n- Exploring and implementing CSS and JS frameworks and libraries to expand my skill set\n\n### Useful Resources\n\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.\n- [CSS-Tricks](https://css-tricks.com/) - A great site for CSS tips and tricks, with many helpful articles and tutorials.\n- [Bootstrap Documentation](https://getbootstrap.com/docs/4.5/getting-started/introduction/) - Comprehensive documentation for Bootstrap, which I used extensively in this project.\n\n## Author\n\n- Portfolio Website - [Kenzy Codex](https://kenzycodex.vercel.app)\n- Frontend Mentor - [@kenzycodex](https://www.frontendmentor.io/profile/kenzycodex)\n\n\n## Acknowledgments\n\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.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenzycodex%2Fhuddle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenzycodex%2Fhuddle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenzycodex%2Fhuddle/lists"}