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

feat: user feedback [skip cypress] #2274

Merged
merged 3 commits into from
Dec 4, 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
7 changes: 4 additions & 3 deletions src/layouts/MainLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ import { AppHeader } from './AppHeader';
import TopBarNotify from './TopBarNotify';

export function MainLayout({ children }: { children: ReactNode }) {
const APP_BANNER_VERSION = '4.0.0';
const APP_BANNER_VERSION = '5.0.0';

return (
<>
<TopBarNotify
learnMoreLink="/markets/?marketName=proto_base_v3"
notifyText="Merit incentives are available for users who both supply cbBTC and borrow USDC."
learnMoreLink="https://oh7vm38ynd2.typeform.com/to/Fnw3rMyw"
notifyText="Looking to provide product feedback? We'd love to hear from you! 👉"
bannerVersion={APP_BANNER_VERSION}
buttonText="Share feedback"
/>
<AppHeader />
<Box component="main" sx={{ display: 'flex', flexDirection: 'column', flex: 1 }}>
Expand Down
Loading