export type Discussion = {
  title: string;
  views: number;
  replies: number;
  createdAt: number;
  link: string;
  tags: string[];
};
