2.0.0 - Overhaul
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m13s

This commit is contained in:
2025-08-18 11:44:55 -06:00
parent bd71602d95
commit ec58d44b9d
20 changed files with 273 additions and 1345 deletions

View File

@@ -9,15 +9,15 @@ interface Props {
const { project } = Astro.props;
---
<div class="card bg-accent w-full max-w-sm shrink shadow-md">
<div class="card bg-accent text-accent-content w-full max-w-sm shrink shadow-md">
<div class="card-body break-words">
<h2
class="card-title text-xl md:text-2xl font-bold justify-center text-center break-words text-base-100"
class="card-title text-xl md:text-2xl font-bold justify-center text-center break-words"
>
{project.name}
</h2>
<p class="text-center break-words text-base-100">
<p class="text-center break-words">
{project.description}
</p>
@@ -26,7 +26,7 @@ const { project } = Astro.props;
href={project.link}
target="_blank"
rel="noopener noreferrer"
class="btn btn-circle text-accent"
class="btn btn-circle"
aria-label={`Visit ${project.name}`}
>
<Icon name="mdi:link" class="text-lg" />