1
1
import React from 'react'
2
2
3
3
import IndexLayout from '../layouts'
4
- import styled from '@emotion/styled'
5
4
import Cloud from '../resources/cloud.svg'
6
5
import Details from '../components/Details'
7
6
import Banner from '../components/Banner'
@@ -14,9 +13,6 @@ import GithubGitlab from '../resources/github-gitlab.svg'
14
13
import Adminstration from '../resources/administration.svg'
15
14
import Install from '../components/self-hosted/Install'
16
15
17
- const StyledSelfHostedPage = styled . div `
18
-
19
- `
20
16
const features : FeatureProps [ ] = [
21
17
{
22
18
title : 'Full Data Control' ,
@@ -42,8 +38,7 @@ const features: FeatureProps[] = [
42
38
43
39
const SelfHostedPage : React . SFC < { } > = ( ) => (
44
40
< IndexLayout canonical = '/self-hosted/' title = "Self-Hosted" >
45
- < StyledSelfHostedPage >
46
-
41
+ < >
47
42
< div className = "grey-container" >
48
43
49
44
{ /* ----- Banner ----- */ }
@@ -58,7 +53,6 @@ const SelfHostedPage: React.SFC<{}> = () => (
58
53
linkPath = "/self-hosted/#install"
59
54
linkText = "Install Now"
60
55
img = { < object role = "presentation" tabIndex = { - 1 } data = { Cloud } /> }
61
- children = { < span style = { { fontWeight : 600 } } > And Start Your 30-day Free Trial.</ span > }
62
56
/>
63
57
</ div >
64
58
@@ -88,8 +82,7 @@ const SelfHostedPage: React.SFC<{}> = () => (
88
82
text = "Learn about collaboration, workspace snapshots, supported programming languages, and much more."
89
83
anchors = { [ { href : '/enterprise/#enterprise' , text : 'Pricing' } , { href : '/docs/self-hosted/latest/self-hosted/' , text : 'Documentation' } ] }
90
84
/>
91
-
92
- </ StyledSelfHostedPage >
85
+ </ >
93
86
</ IndexLayout >
94
87
)
95
88
0 commit comments