Skip to content

Commit 87b32ec

Browse files
jonathanleimDuo13
authored andcommitted
Add Tokenization landing page
Co-authored by: Rome Reginelli <[email protected]>, pdp2121 <[email protected]> fix file names + small styling fix top nav link update nav list fix security card and margin add featured projects + fix margins add related articles update link and light mode mobile view add prev next buttons small styling fixes add unique key & zindex Update docs/use-cases/tokenization/index.page.tsx Update docs/use-cases/tokenization/index.page.tsx Update docs/use-cases/tokenization/index.page.tsx Update docs/use-cases/tokenization/index.page.tsx Update styles/_use-cases.scss Update styles/light/_light-theme.scss add sidebar children back + styling changes Fix tokenization frontmatter & security links Add link from Tokenization to NTTs page
1 parent c2a0caa commit 87b32ec

25 files changed

+1924
-84
lines changed

about/uses.page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ export default function Uses() {
878878
</div>
879879
{/* cards */}
880880
<div
881-
className="right row col row-cols-lg-2 m-0 p-0"
881+
className="right row col row-cols-lg-2 m-2 p-0"
882882
id="use_case_companies_list"
883883
>
884884
{filteredCards.map((card) => (

docs/index.page.tsx

+3-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as React from 'react';
22
import { useTranslate } from '@portal/hooks';
3+
import { NavList } from "shared/components/nav-list";
34

45
export const frontmatter = {
56
seo: {
@@ -164,15 +165,7 @@ function UseCasesCard(props: {
164165
<div className="col">
165166
<img className={'use-cases-img img-fluid mb-2 shadow ' + useCase.imgClass} alt={useCase.title} id={useCase.id} />
166167
<h5 className="mt-4">{useCase.title}</h5>
167-
<ul className="nav flex-column">
168-
{useCase.subItems.map(item => (
169-
<li key={item.link} className="nav-item">
170-
<a href={item.link} className="nav-link">
171-
{item.description}
172-
</a>
173-
</li>
174-
))}
175-
</ul>
168+
<NavList pages={useCase.subItems} />
176169
</div>
177170
);
178171
}
@@ -386,15 +379,7 @@ export default function Docs() {
386379
<div className="row card-grid card-grid-2xN">
387380
<div className="col" id="popular-topics">
388381
<h2 className="h4">{translate('Browse By Recommended Pages')}</h2>
389-
<ul className="nav flex-column">
390-
{recommendedPages.map(page => (
391-
<li className="nav-item" key={page.link}>
392-
<a href={page.link} className="nav-link">
393-
{translate(page.description)}
394-
</a>
395-
</li>
396-
))}
397-
</ul>
382+
<NavList pages={recommendedPages} />
398383
</div>
399384
<div className="col">
400385
<div className="card cta-card p-8-sm p-10-until-sm br-8">

docs/use-cases/tokenization/index.md

-15
This file was deleted.

0 commit comments

Comments
 (0)