Dejvino's Curriculum Vitae
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

39 lines
1.1 KiB

  1. 'use client'
  2. import React from 'react';
  3. import Container from 'react-bootstrap/Container';
  4. import AboutBrief from './components/AboutBrief';
  5. import Skills from './components/Skills';
  6. import { Contacts } from './components/Contacts';
  7. import WorkExperience from './components/WorkExperience';
  8. import Education from './components/Education';
  9. import { Col, Row } from 'react-bootstrap';
  10. import Footer from './components/Footer';
  11. import Photo from './components/Photo';
  12. export default function Home() {
  13. return (
  14. <Container className='main-container' fluid='xxl'>
  15. <Row>
  16. <Col xs={'auto'} sm={4} lg={2}><Photo /></Col>
  17. <Col>
  18. <Row>
  19. <Col xs={'auto'} lg={6}><AboutBrief /></Col>
  20. <Col xs={'auto'} lg={6}><Contacts /></Col>
  21. </Row>
  22. </Col>
  23. </Row>
  24. <Row>
  25. <Col xs={12} xl={7}>
  26. <Row><WorkExperience /></Row>
  27. <Row><Education /></Row>
  28. </Col>
  29. <Col>
  30. <Row><Skills /></Row>
  31. </Col>
  32. </Row>
  33. <Row><Footer /></Row>
  34. </Container>
  35. )
  36. }