feat(status): enhance website status message with globe icon and separator

This commit is contained in:
2025-11-03 18:32:35 +01:00
parent 8bfeb1c43c
commit 290e8b982a

View File

@@ -304,7 +304,9 @@ export class StatusService {
)
});
container.addTextDisplayComponents((text) => text.setContent(`Website Status : https://statut.protojx.com/\n${live ? 'Last update : ' : ''}<t:${dayjs().unix()}:f> - Receive automatic notifications when there is an outage with /follow !`));
container.addSeparatorComponents((s) => s);
container.addTextDisplayComponents((text) => text.setContent(`:globe_with_meridians: Website Status : https://statut.protojx.com/\n${live ? 'Last update : ' : ''}<t:${dayjs().unix()}:f> - Receive automatic notifications when there is an outage with /follow !`));
return container;
}