import React from 'react'; export const mails = [ { id: "6c84fb90-12c4-11e1-840d-7b25c5ee775a", name: "William Smith", email: "williamsmith@example.com", subject: "Meeting Tomorrow", text: "Hi, let's have a meeting tomorrow to discuss the project. I've been reviewing the project details and have some ideas I'd like to share. It's crucial that we align on our next steps to ensure the project's success.\n\nPlease come prepared with any questions or insights you may have. Looking forward to our meeting!\n\nBest regards, William", date: "2023-10-22T09:00:00", read: true, labels: ["meeting", "work", "important"], }, { id: "110e8400-e29b-11d4-a716-446655440000", name: "Alice Smith", email: "alicesmith@example.com", subject: "Re: Project Update", text: "Thank you for the project update. It looks great! I've gone through the report, and the progress is impressive. The team has done a fantastic job, and I appreciate the hard work everyone has put in.\n\nI have a few minor suggestions that I'll include in the attached document.\n\nLet's discuss these during our next meeting. Keep up the excellent work!\n\nBest regards, Alice", date: "2023-10-22T10:30:00", read: true, labels: ["work", "important"], }, { id: "3e7c3f6d-bdf5-46ae-8d90-171300f27ae2", name: "Bob Johnson", email: "bob@example.com", subject: "Weekend Plans", text: "Any plans for the weekend? I was thinking of going hiking in the nearby mountains. It's supposed to be great weather and the fall colors should be at their peak.\n\nLet me know if you'd like to join. I'm planning to start early Saturday morning.\n\nCheers, Bob", date: "2023-10-21T18:45:00", read: false, labels: ["personal"], } ]; export const accounts = [ { label: "Alicia Koch", email: "alicia@example.com", icon: ( Vercel ), }, { label: "Alicia Koch", email: "alicia@gmail.com", icon: ( Gmail ), }, ]; export type Mail = typeof mails[0]; export type Account = typeof accounts[0];