mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 01:16:23 +02:00
feat(ui): add Suggested Topics feature
This commit is contained in:
parent
50df9ed178
commit
e9cdd3f6eb
4 changed files with 230 additions and 4 deletions
|
|
@ -81,3 +81,11 @@ export const TranscriptBlockSchema = z.object({
|
|||
});
|
||||
|
||||
export type TranscriptBlock = z.infer<typeof TranscriptBlockSchema>;
|
||||
|
||||
export const SuggestedTopicBlockSchema = z.object({
|
||||
title: z.string(),
|
||||
description: z.string(),
|
||||
category: z.string().optional(),
|
||||
});
|
||||
|
||||
export type SuggestedTopicBlock = z.infer<typeof SuggestedTopicBlockSchema>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue