SetupPageWelcome.tsx 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. Copyright (C) 2021 Cloudbase Solutions SRL
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. import * as React from 'react'
  15. import { observer } from 'mobx-react'
  16. import styled from 'styled-components'
  17. import SetupPageTitle from '@src/components/modules/SetupModule/ui/SetupPageTitle'
  18. const Wrapper = styled.div``
  19. type Props = {}
  20. @observer
  21. class SetupPageWelcome extends React.Component<Props> {
  22. render() {
  23. return (
  24. <Wrapper>
  25. <SetupPageTitle title="Welcome to Coriolis®" />
  26. <p>
  27. Coriolis® is a fully distributed and scalable system that provides both “lift-and-shift” migration services (CMaaS) and cross-site disaster
  28. recovery features (DRaaS) between a source cloud platform and an independent destination cloud platform.
  29. </p>
  30. </Wrapper>
  31. )
  32. }
  33. }
  34. export default SetupPageWelcome