diff --git a/src/components/LedgerLabel.astro b/src/components/LedgerLabel.astro index 56ec378..e267dd4 100644 --- a/src/components/LedgerLabel.astro +++ b/src/components/LedgerLabel.astro @@ -7,7 +7,7 @@ interface Props { const { as: Tag = "span", href, class: className } = Astro.props as Props; const classes = - "text-ledger-muted font-sans text-sm font-medium uppercase tracking-wide leading-6"; + "text-gray-1000 font-sans text-sm font-medium uppercase tracking-wide leading-6"; const classList = [classes, className]; --- diff --git a/src/components/PostCard.astro b/src/components/PostCard.astro index 2c4ae15..c69979f 100644 --- a/src/components/PostCard.astro +++ b/src/components/PostCard.astro @@ -1,37 +1,19 @@ --- -import FormattedDate from "./FormattedDate.astro"; - interface Props { title: string; description?: string; - pubDate: Date; href: string; - featured?: boolean; } -const { title, description, pubDate, href, featured = false } = Astro.props; +const { title, description, href } = Astro.props; ---