Adds logo asset, adds env var placeholders, adds 404 page

This commit is contained in:
Alicia Sykes
2023-07-22 17:52:51 +01:00
parent 8c15500c7d
commit b81882e6cc
5 changed files with 67 additions and 3 deletions

View File

@ -21,7 +21,7 @@ const DnsServerCard = (props: {data: any, title: string, actionButtons: any }):
return (<>
{ dnsSecurity.dns.length > 1 && <Heading as="h4" size="small" color={colors.primary}>DNS Server #{index+1}</Heading> }
<Row lbl="IP Address" val={dns.address} />
<Row lbl="Hostname" val={dns.hostname} />
{ dns.hostname && <Row lbl="Hostname" val={dns.hostname} /> }
<Row lbl="DoH Support" val={dns.dohDirectSupports ? '✅ Yes*' : '❌ No*'} />
</>);
})}