-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.js
More file actions
83 lines (81 loc) · 2.17 KB
/
posts.js
File metadata and controls
83 lines (81 loc) · 2.17 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// ** WARNING ** ENSURE ONLY ONE OBJECT IS EVER 'HERO: TRUE'
let posts = [
{
id: 1,
title: "Career Changer",
image: './images/post-1-img.jpg',
favorited: false,
tags: ["breaking into tech", "learning", "motivation"],
date: "2025-12-01",
hero: true,
excerpt: "goes here...",
content: "goes here...",
},
{
id: 2,
title: "<q>Non-Technical</q>",
image: './images/post-2-img.jpg',
favorited: false,
tags: ["culture", "human skills", "identity"],
date: "2025-11-14",
hero: false,
excerpt: "goes here...",
content: "goes here...",
},
{
id: 3,
title: "A New Set of Acronyms",
image: './images/post-3-img.jpg',
favorited: false,
tags: ["transition", "jargon", "learning curve"],
date: "2025-11-01",
hero: false,
excerpt: "goes here...",
content: "goes here...",
},
{
id: 4,
title: "Imposter Syndrome",
image: './images/post-4-img.jpg',
favorited: false,
tags: ["mindset", "confidence", "growth"],
date: "2025-10-14",
hero: false,
excerpt: "goes here...",
content: "goes here...",
},
{
id: 5,
title: "The Influence of Others",
image: './images/post-5-img.jpg',
favorited: false,
tags: ["community", "mentorship", "advice"],
date: "2025-10-01",
hero: false,
excerpt: "goes here...",
content: "goes here...",
},
{
id: 6,
title: "Where to Begin",
image: './images/post-6-img.jpg',
favorited: false,
tags: ["beginner", "learning", "scrimba"],
date: "2025-09-14",
hero: false,
excerpt: "goes here...",
content: "goes here...",
},
{
id: 7,
title: "Will AI Replace Me?",
image: './images/post-7-img.jpg',
favorited: false,
tags: ["AI", "engineering", "future of work"],
date: "2025-09-01",
hero: false,
excerpt: "goes here...",
content: "goes here...",
},
]
export default posts