Skip to content

Commit

Permalink
fix(scenarios): fix scenario part
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidroohi92 committed Dec 18, 2024
1 parent fd05f60 commit 5d152b3
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 0 deletions.
4 changes: 4 additions & 0 deletions public/assets/icons/scenario1-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/assets/icons/scenario2-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/assets/icons/scenario3-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Header from "./components/Header";
import Hero from "./components/Hero";
import IntegratedApps from "./components/IntegratedApps";
import LinkRow from "./components/LinkRow";
import Scenarios from "./components/scenarios";

function App() {
return (
Expand All @@ -19,6 +20,7 @@ function App() {
<LinkRow />
<IntegratedApps />
<CodePart />
<Scenarios />
</>
);
}
Expand Down
57 changes: 57 additions & 0 deletions src/components/scenarios.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
import Container from "./Container";

export default function Scenarios() {
return (
<Container classes="lg:px-[6.25rem] 3xl:px-[6.25rem] py-[6.25rem] bg-[#00D448] flex flex-col items-center">
<h3 className="text-[3.5rem] text-[#161616] font-[600] mb-[5.625rem]">
Scenarios include but are not limited to
</h3>
<div className="flex items-center justify-between">
<div className="text-center flex flex-col items-center w-[25%]">
<img
src="/assets/icons/scenario1-icon.svg"
alt="msgport scenario"
className="w-[6.25rem] h-[6.25rem] object-contain mb-[1.8rem]"
/>
<h4 className="text-[1.3rem] text-[#161616] font-[600] mb-[0.625rem]">
Cross-chain Token Management
</h4>
<p className="text-[1rem] text-[#161616] font-[300]">
Msgport enables easy transfer and management of tokens across
different chains.
</p>
</div>
<div className="text-center flex flex-col items-center w-[25%]">
<img
src="/assets/icons/scenario2-icon.svg"
alt="msgport scenario"
className="w-[6.25rem] h-[6.25rem] object-contain mb-[1.8rem]"
/>
<h4 className="text-[1.3rem] text-[#161616] font-[600] mb-[0.625rem]">
Cross-chain Abstract Accounts
</h4>
<p className="text-[1rem] text-[#161616] font-[300]">
With Msgport as the underlying support, a common account can create
counterpart accounts on different chains, abstracting away
chain-specific details.
</p>
</div>
<div className="text-center flex flex-col items-center w-[25%]">
<img
src="/assets/icons/scenario3-icon.svg"
alt="msgport scenario"
className="w-[6.25rem] h-[6.25rem] object-contain mb-[1.8rem]"
/>
<h4 className="text-[1.3rem] text-[#161616] font-[600] mb-[0.625rem]">
Cross-chain Governance{" "}
</h4>
<p className="text-[1rem] text-[#161616] font-[300]">
Msgport allows you to utilize abstract accounts to refactor your
current governance models, facilitating seamless operations across
different chains.
</p>
</div>
</div>
</Container>
);
}

0 comments on commit 5d152b3

Please sign in to comment.