Skip to content

Commit

Permalink
added extra reviews + temp text on create page
Browse files Browse the repository at this point in the history
  • Loading branch information
Dymoxz committed Nov 28, 2024
1 parent 547028a commit c6cf6a1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions libs/backend/features/src/lib/review/review.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ export class ReviewService {
rating: 5,
date: new Date('2023-03-10'),
},
{
id: '4',
content: 'The violin I rented was in pristine condition and had a beautiful sound. The rental process was quick and easy, and the staff was very knowledgeable and friendly. I highly recommend this service for anyone needing a quality instrument for any occasion.',
rating: 5,
date: new Date('2023-04-05'),
},
{
id: '5',
content: 'I rented a saxophone for a jazz performance, and it was fantastic. The instrument was well-maintained and delivered promptly. The sound quality was excellent, and the rental process was seamless. Great service and highly recommended!',
rating: 4,
date: new Date('2023-05-20'),
},
]);

getAll(): IReview[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
Back
</button>

<h2 class="mb-4 text-xl font-bold text-gray-900">Leave a Review</h2>
<h2 class="text-xl font-bold text-gray-900">Leave a Review</h2>
<h1 class="mb-4 text-sm text-gray-500">( about yourself 🙂 )</h1>

<form (ngSubmit)="saveReview()">
<div class="grid gap-4 mb-4 sm:grid-cols-2 sm:gap-6 sm:mb-5">
<div class="sm:col-span-2">
Expand Down

0 comments on commit c6cf6a1

Please sign in to comment.