22 lines
590 B
TypeScript
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;
|