-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
48 lines (42 loc) · 1.62 KB
/
data.ts
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
export const getData= async(categorie:string)=> {
const url=`https://www.themealdb.com/api/json/v1/1/filter.php?c=${categorie}`
const request = await fetch(url,{ cache: 'force-cache' });
if (!request) {
throw new Error("fail to fetch data")
};
return request.json()
}
export const blogPosts = [
{
post_header:"Crochet Projects for Noodle Lovers",
post_body: "Lorem ipsum dolor sit amet, consectetuipisicing elit, sed do eiusmodtempor incididunt ut labore et dolore magna aliqut enim",
post_date: "12 November 2021",
post_author: "James Victor",
post_image:"homepage/Untitled design.jpg",
post_ID:1
},
{
post_header:"Crochet Projects for Noodle Lovers",
post_body: "Lorem ipsum dolor sit amet, consectetuipisicing elit, sed do eiusmodtempor incididunt ut labore et dolore magna aliqut enim",
post_date: "12 November 2021",
post_author: "James Victor",
post_image:"homepage/Untitled design.jpg",
post_ID:2
},
{
post_header:"Crochet Projects for Noodle Lovers",
post_body: "Lorem ipsum dolor sit amet, consectetuipisicing elit, sed do eiusmodtempor incididunt ut labore et dolore magna aliqut enim",
post_date: "12 November 2021",
post_author: "Adeyemi bolladi",
post_image:"homepage/Untitled design.jpg",
post_ID:3
},
{
post_header:"Crochet Projects for Noodle Lovers",
post_body: "Lorem ipsum dolor sit amet, consectetuipisicing elit, sed do eiusmodtempor incididunt ut labore et dolore magna aliqut enim",
post_date: "12 November 2021",
post_author: "John Boss",
post_image:"homepage/Untitled design.jpg",
post_ID:4
},
]