Skip to content

Commit

Permalink
feat: add setup photo to uses section
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Oct 27, 2023
1 parent 55f3fc7 commit 89fa1f9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/(public)/uses/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Image from 'next/image';
import * as React from 'react';
import ReactMarkdown from 'react-markdown';

Expand Down Expand Up @@ -38,6 +39,17 @@ const UsesPage = async () => {
<div className='layout relative flex flex-col py-12'>
<Heading title='uses.title' />

<div className='flex items-center flex-col my-3'>
<Image
className='mb-2'
src='https://res.cloudinary.com/dwrurydlt/image/upload/v1698432934/current_setup.jpg'
alt='Current setup'
width={540}
height={400}
/>
<span className='italic'>My current workstation setup</span>
</div>

{sections.map((section) => (
<div
className='uses-section mb-2'
Expand Down

0 comments on commit 89fa1f9

Please sign in to comment.