import { IReviewPlatforms } from '@/database/review-platforms/reviewPlatforms.types'; export namespace IFeedbackGrid { export interface YoutubeReview { customerName: string; customerPosition: string; content: string; backgroundColor: string; backgroundImage: { default: string; webp: string; width: number; height: number; }; link: string; } export interface Review { customerName: string; customerPosition: string; customerAvatar: string; content: string; industry: string; date: string; platformIcon: string; link: string; } export interface ReviewPlatform extends IReviewPlatforms.Platform { name: string; logo: string; } }