diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/pages')
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Compiler.tsx | 14 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Cov.tsx | 1 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Profiler.tsx | 1 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Trace.tsx | 1 |
4 files changed, 12 insertions, 5 deletions
diff --git a/packages/dev-tools-pages/ts/pages/Compiler.tsx b/packages/dev-tools-pages/ts/pages/Compiler.tsx index 8e2c7f058..96f26a978 100644 --- a/packages/dev-tools-pages/ts/pages/Compiler.tsx +++ b/packages/dev-tools-pages/ts/pages/Compiler.tsx @@ -16,6 +16,7 @@ function Compiler() { <Base context={context}> <CompilerComponent /> <Content> + <ContentBlock main title="Get started" /> <ContentBlock title="Required steps"> <List items={['Step 1', 'Step 2']} /> </ContentBlock> @@ -45,11 +46,14 @@ const artifactAdapter = new SolCompilerArtifactAdapter(artifactsDir, contractsDi </Tabs> </ContentBlock> </Content> - <Content - title="Artifacts" - subtitle="Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can define which parts of the artifact you need." - dark - > + <Content dark> + <ContentBlock main title="Artifacts"> + <p> + Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can + define which parts of the artifact you need. + </p> + </ContentBlock> + <ContentBlock title="Production"> <p> Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can diff --git a/packages/dev-tools-pages/ts/pages/Cov.tsx b/packages/dev-tools-pages/ts/pages/Cov.tsx index 1d8bbf512..c3dfb33c5 100644 --- a/packages/dev-tools-pages/ts/pages/Cov.tsx +++ b/packages/dev-tools-pages/ts/pages/Cov.tsx @@ -22,6 +22,7 @@ function Cov() { </p> </Intro> <Content> + <ContentBlock main title="Get started" /> <ContentBlock title="Required steps"> <List items={['Step 1', 'Step 2']} /> </ContentBlock> diff --git a/packages/dev-tools-pages/ts/pages/Profiler.tsx b/packages/dev-tools-pages/ts/pages/Profiler.tsx index 49028c46a..48c4c122b 100644 --- a/packages/dev-tools-pages/ts/pages/Profiler.tsx +++ b/packages/dev-tools-pages/ts/pages/Profiler.tsx @@ -22,6 +22,7 @@ function Profiler() { </p> </Intro> <Content> + <ContentBlock main title="Get started" /> <ContentBlock title="Required steps"> <List items={['Step 1', 'Step 2']} /> </ContentBlock> diff --git a/packages/dev-tools-pages/ts/pages/Trace.tsx b/packages/dev-tools-pages/ts/pages/Trace.tsx index 4bdc68e95..961f4534f 100644 --- a/packages/dev-tools-pages/ts/pages/Trace.tsx +++ b/packages/dev-tools-pages/ts/pages/Trace.tsx @@ -16,6 +16,7 @@ function Trace() { <Base context={context}> <TraceComponent /> <Content> + <ContentBlock main title="Get started" /> <ContentBlock title="Required steps"> <List items={['Step 1', 'Step 2']} /> </ContentBlock> |