{"id":31766247,"url":"https://github.com/ayokanmi-adejola/testimonial-grid-section","last_synced_at":"2025-10-10T00:30:26.020Z","repository":{"id":303769790,"uuid":"996248242","full_name":"Ayokanmi-Adejola/Testimonial-Grid-Section","owner":"Ayokanmi-Adejola","description":"Testimonials Grid Section built with HTML5, CSS Grid, and responsive design. Featuring a complex grid layout that adapts from 4-column desktop to single-column mobile view.","archived":false,"fork":false,"pushed_at":"2025-08-24T19:06:08.000Z","size":311,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-30T00:00:40.730Z","etag":null,"topics":["css3","google-fonts","grid-layout","html5","mobile-first-workflow"],"latest_commit_sha":null,"homepage":"https://testimonial-grid-section-two-delta.vercel.app","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ayokanmi-Adejola.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-06-04T17:10:19.000Z","updated_at":"2025-09-15T13:28:19.000Z","dependencies_parsed_at":"2025-07-09T10:44:13.975Z","dependency_job_id":null,"html_url":"https://github.com/Ayokanmi-Adejola/Testimonial-Grid-Section","commit_stats":null,"previous_names":["ayokanmi-adejola/testimonial-grid-section"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ayokanmi-Adejola/Testimonial-Grid-Section","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FTestimonial-Grid-Section","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FTestimonial-Grid-Section/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FTestimonial-Grid-Section/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FTestimonial-Grid-Section/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ayokanmi-Adejola","download_url":"https://codeload.github.com/Ayokanmi-Adejola/Testimonial-Grid-Section/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayokanmi-Adejola%2FTestimonial-Grid-Section/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002359,"owners_count":26083356,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["css3","google-fonts","grid-layout","html5","mobile-first-workflow"],"created_at":"2025-10-10T00:29:59.996Z","updated_at":"2025-10-10T00:30:26.014Z","avatar_url":"https://github.com/Ayokanmi-Adejola.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Testimonials Grid Section Solution\n\nThis is a solution to the [Testimonials grid section challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/testimonials-grid-section-Nnw6J7Un7). Frontend Mentor challenges help you improve your coding skills by building realistic projects.\n\n\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\n\n\n![Design preview for the Testimonials grid section coding challenge](./preview.jpg)\n\n\n## My process\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS Grid\n- CSS custom properties\n- Mobile-first workflow\n- Google Fonts (Barlow Semi Condensed)\n- Responsive design principles\n\n### What I learned\n\nThis project was an excellent opportunity to practice CSS Grid layout and responsive design. Here are some key learnings:\n\n**CSS Grid Layout**: I implemented a complex grid layout that changes from a 4-column desktop layout to a single-column mobile layout.\n\n```css\n.testimonials-grid {\n  display: grid;\n  grid-template-columns: repeat(4, 1fr);\n  grid-template-rows: repeat(2, auto);\n  gap: 30px 24px;\n}\n\n.daniel {\n  grid-column: 1 / 3;\n  grid-row: 1;\n}\n\n.kira {\n  grid-column: 4;\n  grid-row: 1 / 3;\n}\n```\n\n**Responsive Design**: Used mobile-first approach with media queries to ensure the layout works perfectly on all devices.\n\n```css\n@media (max-width: 768px) {\n  .testimonials-grid {\n    grid-template-columns: 1fr;\n    grid-template-rows: repeat(5, auto);\n  }\n}\n```\n\n**Semantic HTML**: Structured the content using semantic elements for better accessibility and SEO.\n\n```html\n\u003cmain class=\"testimonials-grid\"\u003e\n  \u003carticle class=\"testimonial daniel\"\u003e\n    \u003cdiv class=\"testimonial-header\"\u003e\n      \u003cimg src=\"./images/image-daniel.jpg\" alt=\"Daniel Clifford\" class=\"profile-image\"\u003e\n      \u003cdiv class=\"profile-info\"\u003e\n        \u003ch2 class=\"name\"\u003eDaniel Clifford\u003c/h2\u003e\n        \u003cp class=\"status\"\u003eVerified Graduate\u003c/p\u003e\n      \u003c/div\u003e\n    \u003c/div\u003e\n    \u003cblockquote class=\"testimonial-content\"\u003e\n      \u003c!-- Content --\u003e\n    \u003c/blockquote\u003e\n  \u003c/article\u003e\n\u003c/main\u003e\n```\n\n### Continued development\n\nAreas I want to continue focusing on in future projects:\n\n- Advanced CSS Grid techniques and subgrid\n- CSS animations and transitions for enhanced user experience\n- Accessibility improvements (ARIA labels, keyboard navigation)\n- Performance optimization techniques\n- CSS custom properties for better maintainability\n\n### Useful resources\n\n- [CSS Grid Guide](https://css-tricks.com/snippets/css/complete-guide-grid/) - Comprehensive guide to CSS Grid\n- [MDN CSS Grid](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout) - Official documentation\n- [Google Fonts](https://fonts.google.com/) - For the Barlow Semi Condensed font\n- [Can I Use](https://caniuse.com/) - For checking browser compatibility\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayokanmi-adejola%2Ftestimonial-grid-section","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayokanmi-adejola%2Ftestimonial-grid-section","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayokanmi-adejola%2Ftestimonial-grid-section/lists"}