import { quotes } from './quotes';

export function getQuoteOfTheDay(): { text: string; author: string}{
    const day = new Date().getDate();
    return quotes[day % quotes.length];
}

export { quotes };