mirror of
https://github.com/fosrl/docs.git
synced 2025-05-12 21:30:43 +01:00
Add crude pricing page
This commit is contained in:
parent
41735bee19
commit
d4fd90ede0
3 changed files with 27 additions and 30 deletions
|
@ -1,5 +0,0 @@
|
||||||
import PricingComponent from "@site/src/components/PricingComponent";
|
|
||||||
|
|
||||||
# Professional Access
|
|
||||||
|
|
||||||
<PricingComponent />
|
|
|
@ -46,22 +46,22 @@ const config: Config = {
|
||||||
// editUrl:
|
// editUrl:
|
||||||
// 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
// 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
||||||
},
|
},
|
||||||
blog: false,
|
// blog: false,
|
||||||
// blog: {
|
blog: {
|
||||||
// showReadingTime: true,
|
showReadingTime: true,
|
||||||
// feedOptions: {
|
feedOptions: {
|
||||||
// type: ['rss', 'atom'],
|
type: ['rss', 'atom'],
|
||||||
// xslt: true,
|
xslt: true,
|
||||||
// },
|
},
|
||||||
// // Please change this to your repo.
|
// Please change this to your repo.
|
||||||
// // Remove this to remove the "edit this page" links.
|
// Remove this to remove the "edit this page" links.
|
||||||
// // editUrl:
|
// editUrl:
|
||||||
// // 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
// 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
||||||
// // Useful options to enforce blogging best practices
|
// Useful options to enforce blogging best practices
|
||||||
// onInlineTags: 'warn',
|
onInlineTags: 'warn',
|
||||||
// onInlineAuthors: 'warn',
|
onInlineAuthors: 'warn',
|
||||||
// onUntruncatedBlogPosts: 'warn',
|
onUntruncatedBlogPosts: 'warn',
|
||||||
// },
|
},
|
||||||
theme: {
|
theme: {
|
||||||
customCss: "./src/css/custom.css"
|
customCss: "./src/css/custom.css"
|
||||||
}
|
}
|
||||||
|
@ -98,13 +98,13 @@ const config: Config = {
|
||||||
src: "img/pangolin_orange.svg"
|
src: "img/pangolin_orange.svg"
|
||||||
},
|
},
|
||||||
items: [
|
items: [
|
||||||
// {
|
{
|
||||||
// type: "docSidebar",
|
type: "docSidebar",
|
||||||
// sidebarId: "tutorialSidebar",
|
sidebarId: "tutorialSidebar",
|
||||||
// position: "left",
|
position: "left",
|
||||||
// label: "Docs",
|
label: "Docs",
|
||||||
// },
|
},
|
||||||
// {to: '/blog', label: 'Blog', position: 'left'},
|
{to: '/pricing', label: 'Pricing', position: 'left'},
|
||||||
{
|
{
|
||||||
href: "https://fossorial.io",
|
href: "https://fossorial.io",
|
||||||
label: "fossorial.io",
|
label: "fossorial.io",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
|
import Layout from '@theme/Layout';
|
||||||
|
|
||||||
const PricingComponent = () => {
|
const PricingComponent = () => {
|
||||||
const [siteCount, setSiteCount] = useState(1);
|
const [siteCount, setSiteCount] = useState(1);
|
||||||
|
@ -27,7 +28,8 @@ const PricingComponent = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
|
||||||
|
<Layout title="Hello" description="Hello React Page">
|
||||||
<div style={styles.pricingContainer}>
|
<div style={styles.pricingContainer}>
|
||||||
{/* Open Source Plan */}
|
{/* Open Source Plan */}
|
||||||
<div style={styles.card}>
|
<div style={styles.card}>
|
||||||
|
@ -172,7 +174,7 @@ const PricingComponent = () => {
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</Layout>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue