🛠️ Add services index and landing page components with dynamic links and new Polish translations

This commit is contained in:
HolgerHatGarKeineNode
2025-12-07 00:01:15 +01:00
parent bc700a1f2c
commit aef4deedd6
25 changed files with 2427 additions and 878 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Enums;
enum SelfHostedServiceType: string
{
case Mempool = 'mempool';
case LNbits = 'lnbits';
case Alby = 'alby';
case Other = 'other';
}