Feat/testimonials - #10
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new “Testimonials” section to the Home page, including UI markup/styling and a typed data/model layer to drive the content.
Changes:
- Introduces a standalone
Testimonialssection component (TS/HTML/CSS) rendered on the Home page. - Adds typed testimonials model + data (including paper asset mapping) under
src/app/features/testimonials/. - Adds a LinkedIn mark SVG and references existing testimonial-related assets.
Reviewed changes
Copilot reviewed 7 out of 15 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/app/pages/home/sections/testimonials/testimonials.ts | New Angular component exposing testimonial data/assets to the template. |
| src/app/pages/home/sections/testimonials/testimonials.html | New testimonials section markup, card layout, and profile links. |
| src/app/pages/home/sections/testimonials/testimonials.css | Styling for testimonial cards, responsive layout, and focus/hover behavior. |
| src/app/pages/home/home.ts | Registers the new Testimonials section in the Home component imports. |
| src/app/pages/home/home.html | Renders <app-testimonials /> on the Home page. |
| src/app/features/testimonials/testimonials.model.ts | Adds typed model definitions for testimonials and paper assets. |
| src/app/features/testimonials/testimonials.data.ts | Adds testimonial content and paper asset mapping constants. |
| public/assets/testimonials/linkedin-mark.svg | Adds the LinkedIn icon used by testimonial profile links. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| export const TESTIMONIAL_PAPER_ASSETS = { | ||
| 'paper-01': { | ||
| desktopSrc: '/assets/testimonials/testimonial-paper-01-desktop.webp', | ||
| mobileSrc: '/assets/testimonials/testimonial-paper-02-mobile.webp', |
|
|
||
| <ul class="testimonials__cards mt-8" role="list"> | ||
| @for (testimonial of testimonials; track testimonial.id) { | ||
| <li class="testimonial-card" tabindex="0"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.