This commit is contained in:
Timo Knuth
2026-01-27 17:27:47 +01:00
parent 4dc7c29134
commit 1a6dc01291
5 changed files with 38 additions and 12 deletions

View File

@@ -62,7 +62,7 @@ export default function HomePage() {
<SeoJsonLd data={[
websiteSchema(),
organizationSchema(),
softwareApplicationSchema(),
softwareApplicationSchema(aggregateRating),
aggregateRatingSchema(aggregateRating),
...reviewSchemas
]} />

View File

@@ -79,11 +79,10 @@ export default function TestimonialsPage() {
{[...Array(5)].map((_, index) => (
<Star
key={index}
className={`w-8 h-8 ${
index < aggregateRating.ratingValue
? 'fill-yellow-400 text-yellow-400'
: 'fill-gray-200 text-gray-200'
}`}
className={`w-8 h-8 ${index < aggregateRating.ratingValue
? 'fill-yellow-400 text-yellow-400'
: 'fill-gray-200 text-gray-200'
}`}
/>
))}
</div>
@@ -136,6 +135,8 @@ export default function TestimonialsPage() {
</div>
</div>
</section>
</div>
</>
);