-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockData.js
More file actions
26 lines (26 loc) · 913 Bytes
/
mockData.js
File metadata and controls
26 lines (26 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export const mockProfiles = [
{
name: "Alex Johnson",
title: "VP of Sales at TechFlow",
recentPosts: [
"Just launched our new product analytics dashboard! So proud of the team.",
"Thinking about the future of AI in sales - automation is key but personalization still wins."
]
},
{
name: "Sarah Chen",
title: "Founder & CEO | Innovate AI",
recentPosts: [
"Hiring again! We're looking for top-tier engineers who are passionate about machine learning.",
"The best founders I know are obsessed with talking to their customers."
]
},
{
name: "Michael Torres",
title: "Director of Marketing @ GrowthX",
recentPosts: [
"Content strategy is changing. If you're not leveraging data to guide your editorial calendar, you're falling behind.",
"Had a great time speaking at the SaaS marketing summit in Austin yesterday!"
]
}
];