Publish partially complete changes in order to make applications
This commit is contained in:
parent
3698e926ea
commit
4bf6f04222
184 changed files with 753 additions and 742 deletions
|
@ -3,8 +3,8 @@ import { Image } from "astro:assets";
|
|||
import type { CollectionEntry } from "astro:content";
|
||||
|
||||
interface Props {
|
||||
interval?: number;
|
||||
images: CollectionEntry<"projects">[];
|
||||
interval?: number;
|
||||
}
|
||||
|
||||
const { interval = 3000, images } = Astro.props;
|
||||
|
@ -31,6 +31,11 @@ const { interval = 3000, images } = Astro.props;
|
|||
class="h-full w-full rounded-sm object-cover transition-all duration-300 group-hover:brightness-50"
|
||||
loading="eager"
|
||||
/>
|
||||
<div class="relative opacity-0 transition-all delay-100 duration-300 ease-in-out group-hover:opacity-100">
|
||||
<p class="absolute right-5 bottom-5 font-medium">
|
||||
{image.data.title}
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue