Make footers anchor to the bottom of the cards

This commit is contained in:
2026-02-25 04:38:59 -05:00
parent ba88360636
commit 09fa78e7e0

View File

@@ -8,7 +8,6 @@ import {
Heading,
Image,
Link,
Stack,
Text,
} from "@chakra-ui/react";
import projects from "../../data/public-projects.json";
@@ -54,11 +53,12 @@ export default function () {
src={`/files/${project.image}`}
/>
<CardHeader>
{project.name} ({project.timespan})
<b>
<Heading size="md">{project.name}</Heading>
</b>
<Text>Time Span: {project.timespan}</Text>
</CardHeader>
<CardBody>
<Text>Time Span: {project.timespan}</Text>
<br />
<Text>{project.description}</Text>
</CardBody>
<Divider />