Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
31 changes: 18 additions & 13 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import { themes as prismThemes } from 'prism-react-renderer';
import type { Config } from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';

// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
Expand Down Expand Up @@ -128,6 +128,11 @@ const config: Config = {
label: 'Guides',
position: 'left',
},
{
to: '/whitepaper',
label: 'Whitepaper',
position: 'left',
},
{
href: 'https://github.com/layer-3',
position: 'right',
Expand Down Expand Up @@ -170,8 +175,8 @@ const config: Config = {
to: '/docs/guides',
},
{
label: 'API Reference',
to: '/docs/api-reference',
label: 'Whitepaper',
to: '/whitepaper',
},
],
},
Expand Down Expand Up @@ -207,19 +212,19 @@ const config: Config = {
defaultLanguage: 'javascript',
magicComments: [
{
className: 'git-diff-remove',
line: 'remove-next-line',
block: { start: 'remove-start', end: 'remove-end' },
className: 'git-diff-remove',
line: 'remove-next-line',
block: { start: 'remove-start', end: 'remove-end' },
},
{
className: 'git-diff-add',
line: 'add-next-line',
block: { start: 'add-start', end: 'add-end' },
className: 'git-diff-add',
line: 'add-next-line',
block: { start: 'add-start', end: 'add-end' },
},
{
className: 'theme-code-block-highlighted-line',
line: 'highlight-next-line',
block: { start: 'highlight-start', end: 'highlight-end' },
className: 'theme-code-block-highlighted-line',
line: 'highlight-next-line',
block: { start: 'highlight-start', end: 'highlight-end' },
},
],
},
Expand Down
43 changes: 43 additions & 0 deletions src/pages/whitepaper.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import React from 'react';
import Layout from '@theme/Layout';
import Link from '@docusaurus/Link';

export default function Whitepaper(): JSX.Element {
return (
<Layout
title="Whitepaper"
description="Download the Yellow Network Whitepaper">
<main className="container margin-vert--xl">
<div className="row">
<div className="col col--8 col--offset-2 text--center">
<h1 className="hero__title margin-bottom--lg">Yellow Network Whitepaper</h1>
<p className="hero__subtitle margin-bottom--xl">
Understand the risks, utilities, and compliance framework of the Yellow token.
</p>

<div className="card shadow--md padding--lg">
<div className="card__header">
<h3>Yellow MiCA Whitepaper</h3>
</div>
<div className="card__body">
<p>
Our whitepaper provides a comprehensive overview of the Yellow Network protocol,
tokenomics, and regulatory compliance under MiCA.
</p>
</div>
<div className="card__footer">
<Link
className="button button--primary button--lg"
to="/assets/YELLOW_MiCA_White_Paper_v.1.1.pdf"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be updated to point to the paper's latest revision

Copy link
Copy Markdown
Collaborator Author

@ihsraham ihsraham Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Taken a pull from the master to get the updated file and updated the file name here.
5c3340a071ed74079462e5fb4a526a4c41e9030f

target="_blank"
download>
Download PDF
</Link>
</div>
</div>
</div>
</div>
</main>
</Layout>
);
}