cv/src/app/page.tsx

39 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-05-24 04:23:20 +00:00
'use client'
2023-05-24 06:43:30 +00:00
import React from 'react';
import Container from 'react-bootstrap/Container';
2023-05-24 07:24:20 +00:00
import AboutBrief from './components/AboutBrief';
2023-05-24 19:15:53 +00:00
import Skills from './components/Skills';
2023-05-25 19:01:22 +00:00
import { Contacts } from './components/Contacts';
2023-05-26 03:43:18 +00:00
import WorkExperience from './components/WorkExperience';
import Education from './components/Education';
2023-05-26 18:44:44 +00:00
import { Col, Row } from 'react-bootstrap';
import Footer from './components/Footer';
import Photo from './components/Photo';
2023-05-24 04:23:20 +00:00
export default function Home() {
return (
2023-05-24 07:24:20 +00:00
2023-05-26 18:44:44 +00:00
<Container className='main-container' fluid='xxl'>
<Row>
<Col xs={'auto'} sm={4} lg={2}><Photo /></Col>
<Col>
<Row>
<Col xs={'auto'} lg={6}><AboutBrief /></Col>
<Col xs={'auto'} lg={6}><Contacts /></Col>
</Row>
</Col>
2023-05-26 18:44:44 +00:00
</Row>
2023-05-27 03:17:40 +00:00
<Row>
<Col xs={12} xl={7}>
<Row><WorkExperience /></Row>
<Row><Education /></Row>
</Col>
<Col>
<Row><Skills /></Row>
</Col>
</Row>
2023-05-26 18:44:44 +00:00
<Row><Footer /></Row>
2023-05-24 06:43:30 +00:00
</Container>
2023-05-24 04:23:20 +00:00
)
}