-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Add pages for data intermediation and domain
Signed-off-by: George J Padayatti <[email protected]>
- Loading branch information
1 parent
45708de
commit d3aa02f
Showing
3 changed files
with
45 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; | ||
import Layout from '@theme/Layout'; | ||
import Footer from '../components/Footer'; | ||
import Helmet from "react-helmet"; | ||
import SwaggerUI from "swagger-ui-react" | ||
import "swagger-ui-react/swagger-ui.css" | ||
|
||
export default function DataIntermediation() { | ||
const { siteConfig } = useDocusaurusContext(); | ||
return ( | ||
<Layout | ||
title={`${siteConfig.title}`} | ||
description="Enabling trust in the data ecosystem for next-generation data sharing. "> | ||
<Helmet> | ||
<title>NordXDataspace (NXD)</title> | ||
</Helmet> | ||
<SwaggerUI url="openapi/data-marketplace.yaml" /> | ||
<Footer /> | ||
</Layout> | ||
); | ||
} |
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,22 @@ | ||
import React from 'react'; | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; | ||
import Layout from '@theme/Layout'; | ||
import Footer from '../components/Footer'; | ||
import Helmet from "react-helmet"; | ||
import SwaggerUI from "swagger-ui-react" | ||
import "swagger-ui-react/swagger-ui.css" | ||
|
||
export default function Domain() { | ||
const { siteConfig } = useDocusaurusContext(); | ||
return ( | ||
<Layout | ||
title={`${siteConfig.title}`} | ||
description="Enabling trust in the data ecosystem for next-generation data sharing. "> | ||
<Helmet> | ||
<title>NordXDataspace (NXD)</title> | ||
</Helmet> | ||
<SwaggerUI url="openapi/data-marketplace.yaml" /> | ||
<Footer /> | ||
</Layout> | ||
); | ||
} |