Fun changes
Some checks failed
CI / Python (lint + test) (push) Failing after 3m38s
CI / Rust (lint + test) (push) Failing after 3m32s
CI / Frontend (lint + typecheck) (push) Failing after 4m12s
Build and publish Docker image / build-and-push (push) Failing after 4m48s

This commit is contained in:
Andras Schmelczer 2026-04-04 22:59:44 +01:00
parent cd778dd088
commit 349a6c1d53
60 changed files with 1260 additions and 2600 deletions

View file

@ -201,9 +201,6 @@ export default function HomePage({
<thead>
<tr className="border-b border-warm-200 dark:border-warm-700 bg-warm-50 dark:bg-warm-800">
<th className="px-2 md:px-5 py-3 md:py-4 text-xs md:text-sm font-bold text-navy-950 dark:text-warm-100" />
<th className="px-1.5 md:px-3 py-3 md:py-4 text-[10px] md:text-xs font-bold text-navy-950 dark:text-warm-100 text-center">
{t('home.listingPortals')}
</th>
<th className="px-1.5 md:px-3 py-3 md:py-4 text-[10px] md:text-xs font-bold text-navy-950 dark:text-warm-100 text-center">
{t('home.checkMyPostcode')}
</th>
@ -220,28 +217,24 @@ export default function HomePage({
{
feature: t('home.compSearchWithout'),
subtitle: t('home.compSearchWithoutSub'),
listings: false,
postcode: false,
guides: false,
},
{
feature: t('home.compAreaData'),
subtitle: t('home.compAreaDataSub'),
listings: false,
postcode: true,
guides: true,
},
{
feature: t('home.compPropertyData'),
subtitle: t('home.compPropertyDataSub'),
listings: true,
postcode: false,
guides: false,
},
{
feature: t('home.compFilters'),
subtitle: t('home.compFiltersSub'),
listings: false,
postcode: false,
guides: false,
},
@ -262,7 +255,7 @@ export default function HomePage({
</div>
)}
</td>
{[row.listings, row.postcode, row.guides].map((has, j) => (
{[row.postcode, row.guides].map((has, j) => (
<td
key={j}
className={`px-1.5 md:px-3 py-2.5 md:py-3.5 text-center text-base md:text-lg ${has ? 'text-green-500' : 'text-red-500'}`}