diff --git a/src/app/components/AboutBrief.tsx b/src/app/components/AboutBrief.tsx index 94ace7b..28e61ed 100644 --- a/src/app/components/AboutBrief.tsx +++ b/src/app/components/AboutBrief.tsx @@ -7,14 +7,9 @@ import { Col, Row } from 'react-bootstrap'; export default function AboutBrief() { const person = usePersonContext() return ( - - - Photograph of the person - -

{person.name}

-

{person.brief}

- -
+ +

{person.name}

+

{person.brief}

) } diff --git a/src/app/components/Contacts.tsx b/src/app/components/Contacts.tsx index 9b0d17b..15e3254 100644 --- a/src/app/components/Contacts.tsx +++ b/src/app/components/Contacts.tsx @@ -22,9 +22,8 @@ export function Contact(props: {icon?: string, text: string}) { textElement = {props.text} } return ( - - - {textElement} + +  {textElement} ) } @@ -34,7 +33,9 @@ export function Contacts() { const focus = useAutoFocus('contacts') return ( -

Contacts

+ +

Contacts

+
{person.contacts.map((contact, index) => ( diff --git a/src/app/components/Photo.tsx b/src/app/components/Photo.tsx new file mode 100644 index 0000000..35e0be2 --- /dev/null +++ b/src/app/components/Photo.tsx @@ -0,0 +1,8 @@ +import React from 'react'; +import Image from 'react-bootstrap/Image' + +export default function Photo() { + return ( + Photograph of the person + ) +} diff --git a/src/app/page.tsx b/src/app/page.tsx index e081d86..48d8190 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,14 +8,20 @@ import WorkExperience from './components/WorkExperience'; import Education from './components/Education'; import { Col, Row } from 'react-bootstrap'; import Footer from './components/Footer'; +import Photo from './components/Photo'; export default function Home() { return ( - - + + + + + + +