()
| 1 | import { XMarkIcon } from '@heroicons/react/20/solid'; |
| 2 | |
| 3 | export default function PromoBanner() { |
| 4 | return ( |
| 5 | <div className="flex items-center gap-x-6 bg-white px-6 py-10 sm:px-3.5 sm:before:flex-1"> |
| 6 | <p className="text-xl leading-6 text-black"> |
| 7 | <strong>Hey!</strong> The team behind CensusGPT is now working on Julius, your personal AI data analyst |
| 8 | </p> |
| 9 | <a |
| 10 | href="https://julius.ai?utm_source=censusGPT" |
| 11 | className="flex-none rounded-full bg-red-500 px-3.5 py-1 text-lg font-semibold text-white shadow-sm hover:bg-red-600 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-900" |
| 12 | > |
| 13 | Check out Julius <span aria-hidden="true">→</span> |
| 14 | </a> |
| 15 | <div className="flex flex-1 justify-end"> |
| 16 | <button type="button" className="-m-3 p-3 focus-visible:outline-offset-[-4px]"> |
| 17 | <span className="sr-only">Dismiss</span> |
| 18 | <XMarkIcon className="h-5 w-5 text-gray-900" aria-hidden="true" /> |
| 19 | </button> |
| 20 | </div> |
| 21 | </div> |
| 22 | ); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected