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.
 
 
 

27 lines
793 B

  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. export default function Home() {
  12. return (
  13. <Container className='main-container' fluid='xxl'>
  14. <Row>
  15. <Col md={12} lg={8}><AboutBrief /></Col>
  16. <Col md={12} lg={4}><Contacts /></Col>
  17. </Row>
  18. <Row><WorkExperience /></Row>
  19. <Row><Education /></Row>
  20. <Row><Skills /></Row>
  21. <Row><Footer /></Row>
  22. </Container>
  23. )
  24. }