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

Banner fix #2665

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion bifrost/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default function Home() {
return (
<>
<div className="bg-blue-200 text-blue-800 p-4 text-center">
Scheduled maintenance: We will be back in 10 minutes.
Scheduled Maintenance: 10-min downtime (11:30-11:40 AM PST); no logs
will be lost, processed with slight delay.
</div>
<main className="flex min-h-screen flex-col items-center justify-between text-black px-[12px] pt-[24px] pb-[24px]">
<div className="flex flex-col items-center justify-between max-w-6xl mx-auto">
Expand Down
3 changes: 2 additions & 1 deletion web/pages/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ const SignIn = ({
>
<div>
<div className="bg-blue-200 text-blue-800 p-4 text-center">
Scheduled maintenance: We will be back in 10 minutes.
Scheduled Maintenance: 10-min downtime (11:30-11:40 AM PST); no logs
will be lost, processed with slight delay.
</div>
<AuthForm
handleEmailSubmit={async (email: string, password: string) => {
Expand Down
3 changes: 2 additions & 1 deletion web/pages/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ const SignUp = () => {
>
{demo === "true" && <InfoBanner />}
<div className="bg-blue-200 text-blue-800 p-4 text-center">
Scheduled maintenance: We will be back in 10 minutes.
Scheduled Maintenance: 10-min downtime (11:30-11:40 AM PST); no logs
will be lost, processed with slight delay.
</div>
<AuthForm
handleEmailSubmit={async (email: string, password: string) => {
Expand Down
Loading