Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import Link from 'next/link'; import CofrnLayout from '@/components/layout'; export const metadata = { title: 'About Us | COFRN', description: 'About us page', }; export default function Page() { return <CofrnLayout pageConfig={{ title: 'About Us', requireAuth: false, requireAdmin: false, }} > <p className='text-center'> First Responder Notifications, LLC provides text-based notifications of requests for emergency responses. This system is intended to be used as a backup to a primary paging system (such as radio or pagers). We also offer the ability to host a text group for your department. </p> <p className='text-center'>Contact and business information can be found here: <Link href='https://www.sos.state.co.us/biz/BusinessEntityDetail.do?masterFileId=20248264569'>Colorado Secretary of State Website</Link>.</p> </CofrnLayout>; } |