TextInfo.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import React from 'react';
  2. import {Row,Col,Container} from 'react-bootstrap'
  3. import monolit from '../img/monolit.jpg'
  4. import styled from 'styled-components'
  5. const Styles = styled.div`
  6. .container{
  7. z-index: -1;
  8. }
  9. `;
  10. export default function TextInfo(){
  11. return(
  12. <Styles>
  13. <Container>
  14. <Row>
  15. <Col md={6}>
  16. <img src={monolit} height={500} style={{paddingTop:'6rem'}}/>
  17. </Col>
  18. <Col md={6} style={{paddingTop:'6rem'}}>
  19. <h2>Notice about Zone</h2>
  20. <p className="text" text-center>
  21. The Zone, no matter how you enter it, is a pain in the ass.
  22. Sometimes it’s full of mutant animals, speaking in strangely familiar tongues.
  23. there are gravitational anomalies, flinging you and whoever you’re with into the sky like ragdolls.
  24. Sometimes you stand in the ruins of a factory and head straight in one direction and stumble right back into the ruins you left.
  25. Sometimes there is a passage so unfriendly to visitors that it is simply called the Meat Grinder; perhaps your Destination, the very reason you entered the Zone, exists on the other side of said Meat Grinder.
  26. The point of the Zone is that these things are there, these absolutely glorious metaphysical pains in the ass, and that you are dealing with them, step by tremulous step.
  27. No matter what, there will be others like you—scavengers in search of god knows what. Maybe they, and you, will be called Stalkers.
  28. </p>
  29. </Col>
  30. </Row>
  31. </Container>
  32. </Styles>
  33. );
  34. }