Files for my website bwc9876.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Okay but what if VTs were slick

Ben C 22465b8f 80db6f4e

+14 -2
+6 -1
src/components/projects/ProjectCard.astro
··· 14 14 <div class="header"> 15 15 <strong class="project-name">{project.data.name}</strong> 16 16 <div> 17 - <Image format="webp" src={project.data.image} alt={project.data.name} /> 17 + <Image 18 + transition:name={`project-img-${project.slug}`} 19 + format="webp" 20 + src={project.data.image} 21 + alt={project.data.name} 22 + /> 18 23 </div> 19 24 </div> 20 25 <span>{project.data.summary}</span>
+8 -1
src/pages/projects/[...slug].astro
··· 74 74 </div> 75 75 </div> 76 76 <div class="colrow-lg-rev img-container"> 77 - <Image format="webp" width={474} height={474} alt={entry.data.name} src={entry.data.image} /> 77 + <Image 78 + transition:name={`project-img-${entry.slug}`} 79 + format="webp" 80 + width={474} 81 + height={474} 82 + alt={entry.data.name} 83 + src={entry.data.image} 84 + /> 78 85 </div> 79 86 </div> 80 87 <Content />