1
1
import React from "react" ;
2
- import { Button } from "reactstrap" ;
2
+ import box from "../../assets/images/blog/box.png"
3
+ import bc from "../../assets/images/blog/bc.png"
4
+ import ai from "../../assets/images/blog/ai.png"
5
+ import web from "../../assets/images/blog/web.png"
6
+ // import { Button } from "reactstrap";
3
7
4
8
import "./Blog.css" ;
5
9
6
10
const Blog = ( ) => {
7
- // useEffect(() => {
8
- // // try {
9
- // // var widget = document.getElementById("medium-widget");
10
- // // if (!!widget) {
11
- // // window.mediumWidget();
12
- // // }
13
- // // } catch (e) {
14
- // // window.location.reload();
15
- // // }
16
- // }, []);
11
+ // useEffect(() => {
12
+ // // try {
13
+ // // var widget = document.getElementById("medium-widget");
14
+ // // if (!!widget) {
15
+ // // window.mediumWidget();
16
+ // // }
17
+ // // } catch (e) {
18
+ // // window.location.reload();
19
+ // // }
20
+ // }, []);
17
21
18
- return (
19
- < React . Fragment >
20
- < div className = "col-12 col-lg-9 mx-auto" >
21
- < h1 data-aos = "zoom-in-up" style = { { marginTop : "120px" } } >
22
- DataX
23
- </ h1 >
24
- < p style = { { margin : "30px auto" } } >
22
+ return (
23
+ < React . Fragment >
24
+ < div className = "col-12 col-lg-9 mx-auto" >
25
+ < h1 data-aos = "zoom-in-up" style = { { marginTop : "120px" } } >
26
+ DataX
27
+ </ h1 >
28
+ < hr />
29
+ { /*<p style={{ margin: "30px auto" }}>
25
30
A Multidisciplinary Tech Journal sharing codes, concepts, experiences,
26
31
and views.
27
32
</p>
@@ -30,18 +35,24 @@ const Blog = () => {
30
35
Publication Link
31
36
</Button>
32
37
</a>
33
- < hr />
34
- { /* <div className="col-11 mx-auto mt-5">
35
- <div
36
- data-aos="zoom-in-up"
37
- data-aos-duration="30000"
38
- id="medium-widget"
39
- ></div>
40
- </div>
41
- <hr /> */ }
38
+ <hr />*/ }
39
+ < div className = "cards" >
40
+ < div className = "card-elements" onClick = { ( ) => window . open ( "https://medium.com/data-science-community-srm/tagged/blockchain" ) } >
41
+ < img src = { box } className = "box" alt = "box" > </ img >
42
+ < img src = { bc } className = "card" alt = "card" > </ img >
42
43
</ div >
43
- </ React . Fragment >
44
- ) ;
44
+ < div className = "card-elements" onClick = { ( ) => window . open ( "https://medium.com/data-science-community-srm/tagged/data-science" ) } >
45
+ < img src = { box } className = "box" alt = "box" > </ img >
46
+ < img src = { ai } className = "card" alt = "card" > </ img >
47
+ </ div >
48
+ < div className = "card-elements" onClick = { ( ) => window . open ( "https://medium.com/data-science-community-srm/tagged/web-development" ) } >
49
+ < img src = { box } className = "box" alt = "box" > </ img >
50
+ < img src = { web } className = "card" alt = "card" > </ img >
51
+ </ div >
52
+ </ div >
53
+ </ div >
54
+ </ React . Fragment >
55
+ ) ;
45
56
} ;
46
57
47
58
export default Blog ;
0 commit comments