feat(homepage): add new sections to homepage

This commit is contained in:
Amruth Pillai
2023-11-13 17:03:41 +01:00
parent 4b1e33db80
commit d18b258761
79 changed files with 3096 additions and 313 deletions

View File

@ -85,10 +85,10 @@ export const ResumeCard = ({ resume }: Props) => {
layout
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
src={url}
loading="lazy"
alt={resume.title}
className="h-full w-full object-cover"
src={`${url}?cache=${new Date().getTime()}`}
/>
)}
</AnimatePresence>

View File

@ -129,10 +129,10 @@ export const ResumeListItem = ({ resume }: Props) => {
layout
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
src={url}
loading="lazy"
alt={resume.title}
className="aspect-[1/1.4142] w-60 rounded-sm object-cover"
src={`${url}?cache=${new Date().getTime()}`}
/>
)}
</AnimatePresence>