Add UTC datetime helpers to attempt to fix running issue
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import React from 'react';
|
||||
|
||||
interface PortalBrandProps {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
admin?: boolean;
|
||||
}
|
||||
|
||||
const PortalBrand: React.FC<PortalBrandProps> = ({ title, subtitle, admin = false }) => (
|
||||
<div className="portal-brand">
|
||||
<div className="portal-mark">S</div>
|
||||
<div className={`portal-brand-text${admin ? ' admin-brand-text' : ''}`}>
|
||||
<h1>{title}</h1>
|
||||
<div className="portal-subtitle">{subtitle}</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default PortalBrand;
|
||||
Reference in New Issue
Block a user