Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel372 committed May 21, 2024
1 parent 827faae commit 86b29fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/components/AboutMe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ const [CursorIsVisible,setCursorIsVisible] = useState(false)
const {ThemeIsDark} = useContext(MyContext) as TstateTheme ;
const ThemeForCursor = `${ThemeIsDark ? 'bg-gray-300' : 'bg-gray-600'}`



useEffect(()=>{
const Interval = setInterval(()=>setCursorIsVisible((prev)=>!prev),700);
return ()=> clearInterval(Interval)
Expand Down Expand Up @@ -43,7 +41,7 @@ return (<motion.div initial="initial" animate="in" exit="out" variants={pageVari

<div className=" rounded-tl-3xl rounded-br-3xl animate-float hidden w-screen900:flex justify-center">
<div className=" overflow-hidden rounded-tl-3xl rounded-br-3xl max-h-[20rem] shadow-2xl">
<Image src={imgProfile} alt='image' height={500} className=""/>
<Image src={imgProfile} alt='image' height={500} className=" "/>
</div>
</div>

Expand Down
6 changes: 2 additions & 4 deletions src/components/MyProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ return ( <section className=' flex flex-col justify-around mb-8' >
<h4 className=' text-3xl text-center mb-6'>Meus projetos</h4>

<ul className='flex flex-wrap w-screen850:justify-center justify-around gap-8 w-screen800:gap-5'>
{ListProjects.map((item)=>( <Project item={item}/>))}
{/* <CatalogProject /> */}
{/* <RegistMemberProject Modal={Modal} setModal={setModal}/> */}

{ListProjects.map((item,index)=>(
<li key={index}><Project item={item} /></li>))}
</ul>
<ModalProject/>

Expand Down
4 changes: 2 additions & 2 deletions src/components/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ return ''
}

return (
<li ref={containerRef}>
<div ref={containerRef} >

<div ref={ref}>

Expand Down Expand Up @@ -94,6 +94,6 @@ className=' bg-black text-white rounded-lg px-2 flex flex-row items-center py-2
</motion.div>
</div>

</li>
</div>
) }
export default Project ;
1 change: 1 addition & 0 deletions src/types/Types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ linkRepository:string
}
export type TprojectReceived = {
item:Tproject
// index:number
}


Expand Down

0 comments on commit 86b29fc

Please sign in to comment.