cv/src/app/page.tsx

23 lines
593 B
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-26 03:43:18 +00:00
import JobsHistory from './components/WorkExperience';
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-24 04:23:20 +00:00
export default function Home() {
return (
2023-05-24 07:24:20 +00:00
2023-05-24 06:43:30 +00:00
<Container fluid='xxl'>
2023-05-24 19:15:53 +00:00
<AboutBrief />
2023-05-25 19:01:22 +00:00
<Contacts />
2023-05-26 03:43:18 +00:00
<WorkExperience />
<Education />
2023-05-24 19:15:53 +00:00
<Skills />
2023-05-24 06:43:30 +00:00
</Container>
2023-05-24 04:23:20 +00:00
)
}