Skip to content

Instantly share code, notes, and snippets.

View fsk1997's full-sized avatar
😀

Fong Say Kiat fsk1997

😀
View GitHub Profile
@fsk1997
fsk1997 / Pagination.astro
Created November 29, 2023 03:37
Astro Pagination Component
---
//require phosphor icon for arrow icons, or bring your own one!
import "@phosphor-icons/web/bold"
const { page = [], slug = "unknownPageSlug" } = Astro.props
---
//Only show the component if there's more than 1 page
{
page.lastPage >= 2 && (
@fsk1997
fsk1997 / CustomImage.astro
Last active October 22, 2023 17:31
AstroJS x TailwindCSS Fading Image Component
---
import { Picture } from "astro:assets";
const {
src,
alt = "An image without description",
quality = 40,
size = "base",
className,
imgClassName,