Sponsors. Minor tweaks to FAQ Accordion

This commit is contained in:
Antoine Phan
2025-07-25 17:28:04 -04:00
parent 7e2b9d32aa
commit 775d13fee2
4 changed files with 42 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ export type EventPost = {
export type FAQ = {
question: string;
answer: string;
}
};
import type { InputValue } from '@portabletext/svelte';
@@ -50,6 +50,12 @@ export type Resource = {
title: string;
url: string;
description: string;
}
};
export type Sponsors = {
name: string;
url: string;
logo: string;
};
export type Redirect = { shortname: string; url: string };