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.
 
 
 

33 lines
1.1 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, Stack } 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={4} sm={2} lg={2} className='d-flex align-items-center'><Photo /></Col>
  18. <Col xs={8} sm={10} lg={5}><AboutBrief /></Col>
  19. <Col xs={12} lg={5}><Contacts /></Col>
  20. </Row>
  21. <Row>
  22. <Col xs={12} lg={8}><WorkExperience /></Col>
  23. <Col xs={12} lg={4}><Skills /></Col>
  24. <Col xs={12} lg={6}><Education /></Col>
  25. <Col xs={12} lg={6}><Projects /></Col>
  26. </Row>
  27. <Row><Footer /></Row>
  28. </Container>
  29. )
  30. }