Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ui-ux): add banner #1269

Merged
merged 5 commits into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions apps/web/src/components/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,17 @@ export default function Banner(): JSX.Element {
<HiLockClosed size={16} />
</div>
<div className="pl-4">
{`Quantum Bridge will enter maintenance mode indefinitely, please visit
Birthday Research's Official Twitter account for the full information`}
<span className="inline-block md:inline">
{`Quantum Bridge will enter maintenance mode indefinitely, please visit
Birthday Research's Official Twitter account for the`}
&nbsp;
</span>
<a
href="https://x.com/BirthdayDev/status/1813165248980869335"
className="inline font-semibold text-transparent bg-clip-text bg-gradient-to-r from-[#42F9C2] to-[#082FD4]"
>
full information&nbsp;
</a>
</div>
</div>
);
Expand Down
Loading