From f1572c038c49e3cd0bb39a36209f9a6b0e73e085 Mon Sep 17 00:00:00 2001 From: ChineseChikki Date: Wed, 11 Jan 2023 14:06:48 +0100 Subject: [PATCH] SiteService.js Created --- vendors/service/siteService.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/vendors/service/siteService.js b/vendors/service/siteService.js index e69de29..3cec7b6 100644 --- a/vendors/service/siteService.js +++ b/vendors/service/siteService.js @@ -0,0 +1,33 @@ +const siteService = [ + { + title: "This is the title 1 from backend", + text: "Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.", + }, + + { + title: "This is the title 2", + text: "Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.", + }, + + { + title: "This is the title 3", + text: "Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.", + }, + + { + title: "This is the title 4", + text: "Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.", + }, + + { + title: "This is the title 5", + text: "Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.", + }, + + { + title: "This is the title 6", + text: "Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.", + }, +]; + +export default siteService;