feat(ui): add Suggested Topics feature

This commit is contained in:
tusharmagar 2026-04-17 21:28:57 +05:30 committed by arkml
parent 50df9ed178
commit e9cdd3f6eb
4 changed files with 230 additions and 4 deletions

View file

@ -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>;