docs: update the Call page

Update the Call page with some updated text and some product-specific
testimonials.
This commit is contained in:
Oliver Davies 2023-07-13 22:47:54 +01:00
parent 7c36c93917
commit e2f57eaf92
5 changed files with 52 additions and 33 deletions

View file

@ -53,9 +53,10 @@ const talkCollection = defineCollection({
const testimonialCollection = defineCollection({
type: 'data',
schema: z.object({
date: z.string().optional(),
image: z.string().or(z.null()),
name: z.string(),
tagline: z.string(),
tagline: z.string().or(z.null()),
text: z.string(),
url: z.string().or(z.null()),
}),