Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/components/ToolsGrid.astro
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ import OpensInNewTab from "./OpensInNewTab.astro";
{tool.actionLabel}
<OpensInNewTab />
</a>
{
tool.facebookHref ? (
<a
href={tool.facebookHref}
target="_blank"
rel="noopener noreferrer"
class="btn btn-secondary btn-sm"
aria-label={`${tool.name} on Facebook`}
>
Facebook
<OpensInNewTab />
</a>
) : null
}
{
tool.githubHref ? (
<a
Expand Down
10 changes: 7 additions & 3 deletions src/data/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type ToolEntry = {
name: string;
description: string;
href: string;
facebookHref?: string;
githubHref?: string;
actionLabel: string;
status: ToolStatus;
Expand All @@ -20,7 +21,8 @@ export const tools: ToolEntry[] = [
name: "Kubo",
description:
"A student housing platform that helps students find trusted places to stay and gives dorm owners the tools to reach more students, manage availability, and keep their rooms occupied.",
href: "https://www.facebook.com/findkubo/",
href: "https://kubo.community",
facebookHref: "https://www.facebook.com/findkubo/",
actionLabel: "Visit website",
status: "active",
statusLabel: "Active",
Expand Down Expand Up @@ -67,7 +69,8 @@ export const tools: ToolEntry[] = [
statusLabel: "Active",
tags: ["Academics"],
screenshot: "/gwa-calculator-screenshot.png",
screenshotAlt: "UP GWA Calculator grade tracking dashboard showing subjects, GWA, and Latin honors status",
screenshotAlt:
"UP GWA Calculator grade tracking dashboard showing subjects, GWA, and Latin honors status",
},
{
id: "uplb-trail",
Expand All @@ -80,6 +83,7 @@ export const tools: ToolEntry[] = [
statusLabel: "Active",
tags: ["Directory"],
screenshot: "/trail-screenshot.png",
screenshotAlt: "UPLB TRAIL search engine page showing category tags and directory search results",
screenshotAlt:
"UPLB TRAIL search engine page showing category tags and directory search results",
},
];
Loading