@@ -8,7 +8,9 @@ import MainTitle from "../../components/main-title/MainTitle";
88import MainParagraph from "../../components/paragraph-main/MainParagraph" ;
99import RightMenu from "../../components/RightMenu/RightMenu" ;
1010import AnchorToTab from "../../components/util-components/AnchorToTab" ;
11-
11+ import { FileMosaic } from "../../files-ui" ;
12+ import expressjslogo from "../../static/serverside/expressjslogo.webp" ;
13+ import javalogo from "../../static/serverside/springbootjavalogo.png" ;
1214const ServerSidePage = ( ) => {
1315 return (
1416 < React . Fragment >
@@ -25,25 +27,57 @@ const ServerSidePage = () => {
2527 </ DescParagraph >
2628 < section id = "expressjs" >
2729 < SubTitle content = "Express JS" />
28- < DescParagraph >
29- The following code is just the main part of a project. Check it up
30- in the following{ " " }
31- < AnchorToTab href = "https://github.com/files-ui/files-ui-web-test/tree/master/expressjs" >
32- here
33- </ AnchorToTab >
34- .
35- </ DescParagraph >
30+ < div
31+ style = { {
32+ display : "flex" ,
33+ flexDirection : "revert" ,
34+ flexWrap : "nowrap" ,
35+ alignItems : "center" ,
36+ justifyContent : "space-between" ,
37+ } }
38+ >
39+ < DescParagraph >
40+ The following code is just the main part of a project. Check it
41+ up in the following{ " " }
42+ < AnchorToTab href = "https://github.com/files-ui/files-ui-web-test/tree/master/expressjs" >
43+ link
44+ </ AnchorToTab >
45+ .
46+ </ DescParagraph >
47+ < FileMosaic
48+ { ...logoExpress }
49+ onClick = { ( ) => {
50+ alert ( "open" ) ;
51+ } }
52+ />
53+ </ div >
3654 </ section >
3755 < section id = "springboot" >
3856 < SubTitle content = "Java - Spring boot" /> { " " }
39- < DescParagraph >
40- The following code is just the main part of a project. Check it up
41- in the following{ " " }
42- < AnchorToTab href = "https://github.com/files-ui/files-ui-web-test/tree/master/springboot" >
43- here
44- </ AnchorToTab >
45- .
46- </ DescParagraph >
57+ < div
58+ style = { {
59+ display : "flex" ,
60+ flexDirection : "revert" ,
61+ flexWrap : "nowrap" ,
62+ alignItems : "center" ,
63+ justifyContent : "space-between" ,
64+ } }
65+ >
66+ < DescParagraph >
67+ The following code is just the main part of a project. Check it
68+ up in the following{ " " }
69+ < AnchorToTab href = "https://github.com/files-ui/files-ui-web-test/tree/master/springboot" >
70+ link
71+ </ AnchorToTab >
72+ .
73+ </ DescParagraph >
74+ < FileMosaic
75+ { ...logoJava }
76+ onClick = { ( ) => {
77+ alert ( "open" ) ;
78+ } }
79+ />
80+ </ div >
4781 </ section >
4882 </ MainContentContainer >
4983 < RightMenuContainer >
@@ -67,3 +101,17 @@ const rightMenuItems = [
67101 referTo : "/server-side#springboot" ,
68102 } ,
69103] ;
104+
105+ const logoExpress = {
106+ id : ":0:" ,
107+ //size: 28 * 1024 * 1024,
108+ type : "image/png" ,
109+ imageUrl : expressjslogo ,
110+ } ;
111+
112+ const logoJava = {
113+ id : ":1:" ,
114+ //size: 28 * 1024 * 1024,
115+ type : "image/png" ,
116+ imageUrl : javalogo ,
117+ } ;
0 commit comments