-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/charmverse/app.charmverse.io …
…into feat/sg-quests
- Loading branch information
Showing
25 changed files
with
235 additions
and
299 deletions.
There are no files selected for viewing
This file contains 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 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 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
10 changes: 10 additions & 0 deletions
10
apps/scoutgame/app/(general)/info/partner-rewards/glo/page.tsx
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { GloDollarPage } from '@packages/scoutgame-ui/components/info/partner-rewards/GloDollarPage'; | ||
import type { Metadata } from 'next'; | ||
|
||
export const metadata: Metadata = { | ||
title: 'Glo Rewards' | ||
}; | ||
|
||
export default async function Game7() { | ||
return <GloDollarPage />; | ||
} |
This file contains 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 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
16 changes: 0 additions & 16 deletions
16
apps/scoutgame/components/scout/components/StarterPackInfo.tsx
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions
10
apps/scoutgametelegram/app/(general)/info/partner-rewards/glo/page.tsx
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { GloDollarPage } from '@packages/scoutgame-ui/components/info/partner-rewards/GloDollarPage'; | ||
import type { Metadata } from 'next'; | ||
|
||
export const metadata: Metadata = { | ||
title: 'Glo Rewards' | ||
}; | ||
|
||
export default async function Game7() { | ||
return <GloDollarPage />; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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
31 changes: 31 additions & 0 deletions
31
packages/scoutgame-ui/src/components/info/partner-rewards/GloDollarPage.tsx
This file contains 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Link, Typography } from '@mui/material'; | ||
|
||
import { InfoCard } from '../../common/DocumentPageContainer/components/InfoCard'; | ||
import { List, ListItem } from '../../common/List'; | ||
import { InfoPageContainer } from '../components/InfoPageContainer'; | ||
|
||
export function GloDollarPage() { | ||
return ( | ||
<InfoPageContainer data-test='partner-glo-page' image='/images/info/rewards-partner-glo.png' title='Glo Dollar'> | ||
<Document /> | ||
</InfoPageContainer> | ||
); | ||
} | ||
|
||
function Document() { | ||
return ( | ||
<InfoCard> | ||
<Typography> | ||
Glo Dollar is rewarding Scouts for supporting Builders! The total prize pool is $1000 USDGLO through December | ||
2024. | ||
</Typography> | ||
<Typography variant='h6' color='secondary' mt={2}> | ||
How it works | ||
</Typography> | ||
<Typography> | ||
A Scout receives $1 USDGLO for each Builder Card, up to 5, purchased through the end of the year. Maximum reward | ||
per Scout is $5 USDGLO. | ||
</Typography> | ||
</InfoCard> | ||
); | ||
} |
This file contains 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 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.