This commit is contained in:
2026-01-06 21:22:10 +01:00
parent 5049e7791f
commit 4194f68968
7 changed files with 497 additions and 16 deletions

View File

@@ -20,6 +20,14 @@ const serverInfo = {
links: [
{ label: 'Steam', url: 'https://store.steampowered.com/app/1604030/V_Rising/' }
]
},
zomboid: {
hint: 'Version 42.13',
address: 'pz.zeasy.dev:16261',
logo: '/zomboid.png',
links: [
{ label: 'Steam', url: 'https://store.steampowered.com/app/108600/Project_Zomboid/' }
]
}
}
@@ -28,6 +36,7 @@ const getServerInfo = (serverName) => {
if (name.includes('minecraft') || name.includes('all the mods')) return serverInfo.minecraft
if (name.includes('factorio')) return serverInfo.factorio
if (name.includes('vrising') || name.includes('v rising')) return serverInfo.vrising
if (name.includes('zomboid')) return serverInfo.zomboid
return null
}
@@ -127,6 +136,13 @@ export default function ServerCard({ server, onClick, isAuthenticated }) {
</div>
)}
{/* Project Zomboid notice - only for authenticated users */}
{isAuthenticated && server.type === 'zomboid' && (
<div className="mb-4 text-xs text-neutral-500">
Version 42.13
</div>
)}
{/* Metrics */}
<div className="space-y-3">
{/* CPU */}