Skip to content

Commit

Permalink
feat: add Photo component - wip
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Jul 30, 2023
1 parent 173098f commit 54d2f00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/organisms/home/Code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Code = ({ codeSnippets }: CodeSnippetsProps) => {
}, [loading]);

return (
<div className='me-4 h-72 w-full rounded border-double bg-slate-200 px-4 pb-12 pt-6 dark:bg-slate-800 md:w-1/2'>
<div className='h-92 me-4 w-full rounded border-double bg-slate-200 px-4 pb-12 pt-6 dark:bg-slate-800 md:w-1/2'>
<div id='typed-strings'>
{loading ? <span className='cursor-blink'>_</span> : null}
{!loading &&
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/home/Intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Photo from '@/components/organisms/home/Photo';

const Intro = ({ codeSnippets }: CodeSnippetsProps) => {
return (
<div className='mb-12 flex h-fit flex-col pb-12 md:h-96'>
<div className='mb-6 flex h-fit flex-col pb-6 md:h-96'>
<h1 className='pb-4 text-5xl antialiased'>Hey there, I'm Marta 👋🏻</h1>

<div className='mt-8 flex flex-col md:flex-row'>
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/home/Photo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';

const Photo = () => {
return (
<div className='h-84 flex w-full justify-start md:w-1/2 md:justify-end'>
<div className='h-68 flex w-full justify-start md:w-1/2 md:justify-end'>
<div className='mx-6 flex flex-row-reverse p-3 md:flex-row'>
<Image
className='rounded-full'
Expand Down

0 comments on commit 54d2f00

Please sign in to comment.