-
Notifications
You must be signed in to change notification settings - Fork 13
Prod to staging #1237
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
Merged
Merged
Prod to staging #1237
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
bade4ae
chore: show maintainance banner
kushagrasarathe 3bceb07
chore: remove maintatinence banner
kushagrasarathe e11ca8f
Merge branch 'peanut-wallet' into chore/maintainance
kushagrasarathe 6d13946
fix: merge conflicts
kushagrasarathe f99d9fd
chore: under maintainanace
kushagrasarathe c9d2109
Merge branch 'peanut-wallet' into chore/maintainance
kushagrasarathe b1cde7a
chore: under maintainanace banner in layouts
kushagrasarathe c105812
chore: remove maintainance banner
kushagrasarathe ec9a98b
Merge branch 'peanut-wallet' into chore/maintainance
kushagrasarathe 29f6d1d
chore: remove banner
kushagrasarathe f7976af
chore: global maintainanace page
kushagrasarathe 38c7c5c
Merge branch 'peanut-wallet' into chore/maintainance
kushagrasarathe f81ae60
Merge pull request #1233 from peanutprotocol/chore/enable-maintainance
Hugo0 d0f3cf3
upgraded zerodev
Hugo0 b5a2217
patched
Hugo0 3e3c467
Merge pull request #1234 from peanutprotocol/chore/dep-upgrade
jjramirezn 99d8d6b
disable maintenance
Hugo0 388b8e2
Merge pull request #1235 from peanutprotocol/chore/enable-maintainance
jjramirezn fbb6d12
maintenance
Hugo0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,30 @@ | ||
| import Layout from '@/components/Global/Layout' | ||
| 'use client' | ||
| import chillPeanutAnim from '@/animations/GIF_ALPHA_BACKGORUND/512X512_ALPHA_GIF_konradurban_01.gif' | ||
| import { Button } from '@/components/0_Bruddle' | ||
| import Image from 'next/image' | ||
| import { useRouter } from 'next/navigation' | ||
|
|
||
| export default function MaintenancePage() { | ||
| const MaintenancePage = () => { | ||
| const router = useRouter() | ||
| return ( | ||
| <Layout> | ||
| <div className="flex min-h-screen flex-col items-center justify-center"> | ||
| <h1 className="mb-4 text-4xl font-bold">Under Maintenance</h1> | ||
| <p className="text-xl"> | ||
| This feature is currently undergoing maintenance. We apologize for the inconvenience. | ||
| </p> | ||
| </div> | ||
| </Layout> | ||
| <div className="flex h-screen flex-col items-center justify-center gap-4 p-6"> | ||
| <Image src={chillPeanutAnim.src} alt="Maintenance" width={250} height={250} /> | ||
| <h1 className="text-3xl font-bold text-black">Under Maintenance</h1> | ||
| <p className="text-center text-lg text-gray-1"> | ||
| We are currently going through maintenance. We should be back online shortly. Sorry for the | ||
| inconvenience. | ||
| </p> | ||
| <p className="text-center text-gray-1">Thank you for your patience.</p> | ||
|
|
||
| <Button | ||
| variant="transparent" | ||
| onClick={() => router.push('/support')} | ||
| className="h-5 w-fit p-0 underline underline-offset-2" | ||
| > | ||
| Contact Support? | ||
| </Button> | ||
| </div> | ||
| ) | ||
| } | ||
|
|
||
| export default MaintenancePage |
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.