diff --git a/application/src/components/public/PublicStatusPageFooter.tsx b/application/src/components/public/PublicStatusPageFooter.tsx index 41efd3f..785bb8a 100644 --- a/application/src/components/public/PublicStatusPageFooter.tsx +++ b/application/src/components/public/PublicStatusPageFooter.tsx @@ -1,23 +1,86 @@ -import { Globe } from 'lucide-react'; import { OperationalPageRecord } from '@/types/operational.types'; +import { format } from 'date-fns'; +import { Clock, Shield, Zap, RefreshCw } from 'lucide-react'; +import { Button } from '@/components/ui/button'; interface PublicStatusPageFooterProps { page: OperationalPageRecord; } export const PublicStatusPageFooter = ({ page }: PublicStatusPageFooterProps) => { + const handleRefresh = () => { + window.location.reload(); + }; + return ( -
-
- - {page.custom_domain ? ( - Status page hosted at {page.custom_domain} - ) : ( - Status page - )} +
+ ); }; \ No newline at end of file