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

8 - Revamp pages, redirects, nav update #109

Closed
Closed
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,10 @@
{
"title": "Environmental Impact",
"description": "How Solana is supporting a greener web3."
},
{
"title": "Wallets",
"description": "Experience the power of Solana."
}
]
}
Expand Down Expand Up @@ -867,6 +871,12 @@
},
{
"title": "Financial Institutions"
},
{
"title": "Loyalty"
},
{
"title": "Defi"
}
]
},
Expand Down
Binary file added public/src/img/solana-wallets/gem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 25 additions & 1 deletion rewrites-redirects.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,30 @@
"source": "/environment",
"destination": "https://climate.solana.com/"
},
{ "source": "/breakpoint/side-events", "destination": "/breakpoint" }
{ "source": "/breakpoint/side-events", "destination": "/breakpoint" },
{
"source": "/solutions/payments-tooling",
"destination": "/solutions/payments"
},
{
"source": "/solana-wallets",
"destination": "/solutions/wallets-explorer"
},
{
"source": "/solutions/games-tooling",
"destination": "/solutions/gaming"
},
{
"source": "/solutions/artists-creators",
"destination": "/solutions/creative"
},
{
"source": "/solutions/financial-institutions",
"destination": "/solutions/institutional-finance"
},
{
"source": "/wallets",
"destination": "/solutions/wallets"
}
]
}
10 changes: 10 additions & 0 deletions src/components/header/HeaderListLearn.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ const HeaderListLearn = () => {
{t("nav.learn.start.title")}
</div>
<div>
<Link
to="/learn/wallets"
className="nav-link nav-link--secondary"
activeClassName="active"
>
<strong className="d-block text-white">
{learnStartItems[3].title}
</strong>
{learnStartItems[3].description}
</Link>
<Link
to="/learn/blockchain-basics"
className="nav-link nav-link--secondary"
Expand Down
30 changes: 24 additions & 6 deletions src/components/header/HeaderListSolutions.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const HeaderListSolutions = () => {
</strong>
</Link>
<Link
to="/solutions/actions"
to="/solutions/blinks-and-actions"
className="nav-link nav-link--secondary"
activeClassName="active"
>
Expand All @@ -44,7 +44,7 @@ const HeaderListSolutions = () => {
</strong>
</Link>
<Link
to="/wallets"
to="/solutions/wallets"
className="nav-link nav-link--secondary"
activeClassName="active"
>
Expand All @@ -62,7 +62,7 @@ const HeaderListSolutions = () => {
</strong>
</Link>
<Link
to="/solutions/games-tooling"
to="/solutions/gaming"
className="nav-link nav-link--secondary"
activeClassName="active"
>
Expand All @@ -71,7 +71,7 @@ const HeaderListSolutions = () => {
</strong>
</Link>
<Link
to="/solutions/payments-tooling"
to="/solutions/payments"
className="nav-link nav-link--secondary"
activeClassName="active"
>
Expand Down Expand Up @@ -155,7 +155,7 @@ const HeaderListSolutions = () => {
</strong>
</Link>
<Link
to="/solutions/artists-creators"
to="/solutions/creative"
className="nav-link nav-link--secondary"
activeClassName="active"
>
Expand All @@ -164,14 +164,32 @@ const HeaderListSolutions = () => {
</strong>
</Link>
<Link
to="/solutions/financial-institutions"
to="/solutions/institutional-finance"
className="nav-link nav-link--secondary"
activeClassName="active"
>
<strong className="d-block text-white">
{solutionsCasesItems[3].title}
</strong>
</Link>
<Link
to="/solutions/loyalty"
className="nav-link nav-link--secondary"
activeClassName="active"
>
<strong className="d-block text-white">
{solutionsCasesItems[4].title}
</strong>
</Link>
<Link
to="/solutions/defi"
className="nav-link nav-link--secondary"
activeClassName="active"
>
<strong className="d-block text-white">
{solutionsCasesItems[5].title}
</strong>
</Link>
</div>
</div>
</div>
Expand Down
Loading
Loading