-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Minimal Ms Redesign * Add redesign V2 * clean-index * polish integration with designer feedback * Change banner * fix robot api test * fix dusa wave * add translation * review changes
- Loading branch information
1 parent
89f8088
commit e9f40f0
Showing
21 changed files
with
478 additions
and
149 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
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
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.
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,6 @@ | ||
export * from './DusaWave.svg'; | ||
export * from './FoundationBis.svg'; | ||
export * from './BridgeOutline.svg'; | ||
export * from './MassaLabs.svg'; | ||
export * from './DusaWave.svg'; | ||
export * from './Explorer.svg'; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { RedirectTile } from '@massalabs/react-ui-kit'; | ||
import bridgeOutline from '../../../assets/dashboard/BridgeOutline.svg'; | ||
import { motion } from 'framer-motion'; | ||
import Intl from '@/i18n/i18n'; | ||
|
||
export function Bridge() { | ||
return ( | ||
<motion.div className="h-full" whileHover={{ scale: 1.05 }}> | ||
<RedirectTile | ||
url="https://bridge.massa.net" | ||
size="cs" | ||
customSize="h-full" | ||
style={{ | ||
backgroundImage: `url(${bridgeOutline})`, | ||
backgroundSize: 'cover', | ||
backgroundRepeat: 'no-repeat', | ||
}} | ||
> | ||
<div className="relative top-10 pl-2 h-fit flex flex-col gap-4 justify-between"> | ||
<p className="mas-subtitle">{Intl.t('modules.bridge')}</p> | ||
<p>{Intl.t('dashboard.bridge-desc')}</p> | ||
</div> | ||
</RedirectTile> | ||
</motion.div> | ||
); | ||
} |
Oops, something went wrong.