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.
 
 
 

41 lines
1.2 KiB

  1. 'use client'
  2. import React, { ForwardedRef, ReactNode, RefObject, forwardRef } 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. import Projects from './components/Projects';
  13. export default function Home() {
  14. return (
  15. <Container className='main-container' fluid='xxl'>
  16. <Row>
  17. <Col xs={'auto'} sm={4} lg={2}><Photo /></Col>
  18. <Col>
  19. <Row>
  20. <Col xs={'auto'} lg={6}><AboutBrief /></Col>
  21. <Col xs={'auto'} lg={6}><Contacts /></Col>
  22. </Row>
  23. </Col>
  24. </Row>
  25. <Row>
  26. <Col xs={12} xl={7}>
  27. <Row><WorkExperience /></Row>
  28. <Row><Projects /></Row>
  29. <Row><Education /></Row>
  30. </Col>
  31. <Col>
  32. <Row><Skills /></Row>
  33. </Col>
  34. </Row>
  35. <Row><Footer /></Row>
  36. </Container>
  37. )
  38. }