-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbundle.js
58 lines (55 loc) · 1.65 KB
/
bundle.js
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
const blogData = [
{
imgSrc: './public/images/blog-1.svg',
category: 'App Design',
date: '26th August 2021',
authorImage: './images/profile-9.png',
authorName: 'Kelvin',
},
{
imgSrc: './public/images/blog-2.svg',
category: 'App Design',
date: '26th August 2021',
authorImage: './images/profile-9.png',
authorName: 'Kelvin',
},
{
imgSrc: './public/images/blog-3.svg',
category: 'App Design',
date: '26th August 2021',
authorImage: './images/profile-9.png',
authorName: 'Kelvin',
},
];
const placeholderText = {
heading: 'text for h2 here',
category: 'text for category here',
date: 'text for date here',
authorName: 'text for author name here',
};
const adTopBanner = `
<!--<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6192736694961269" crossorigin="anonymous"></script>-->
<!-- ad_top-banner -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-6192736694961269"
data-ad-slot="2311865152"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
`;
const adFooter = `
<!--<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6192736694961269" crossorigin="anonymous"></script>-->
<!-- ad-footer -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-6192736694961269"
data-ad-slot="7371500585"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
`;