Files
ember-market-frontend/config/quotes.ts
NotII 39c349509c ugh
2025-03-24 01:46:11 +00:00

22 lines
590 B
TypeScript

// Random quotes for loading/dashboard screens
const quotes = [
"Checking inventory...",
"Analyzing market trends...",
"Connecting to secure channels...",
"Loading vendor dashboard...",
"Processing request...",
"Preparing your dashboard...",
"Calculating revenue metrics...",
"Gathering order data...",
"Initializing secure connection...",
"Syncing with database...",
"Loading vendor interface..."
];
export function getRandomQuote(): string {
const randomIndex = Math.floor(Math.random() * quotes.length);
return quotes[randomIndex];
}
export default quotes;