This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function AnnouncementBar() { | |
const msg = process.env.NEXT_PUBLIC_ANNOUNCEMENT?.trim(); | |
if (!msg) return null; | |
return ( | |
<div className="w-full bg-yellow-100 text-yellow-900 text-sm py-2 text-center px-3"> | |
{msg} | |
</div> | |
); | |
} |