|
@@ -2,25 +2,39 @@ import React from "react";
|
|
|
|
|
|
const buildLink = (link, name) => {
|
|
|
return (
|
|
|
- <div class='strong-link'>
|
|
|
+ <div class="strong-link">
|
|
|
<a href={link}>{name}</a>
|
|
|
</div>
|
|
|
- )
|
|
|
+ );
|
|
|
};
|
|
|
|
|
|
export default () => (
|
|
|
<div style={{ textAlign: "center" }}>
|
|
|
<h1>Stronglogicp</h1>
|
|
|
- </div>
|
|
|
- <div class="strong-links">
|
|
|
- {buildLink("https://github.com/StronglogicSolutions/", "StrongLogic Solutions GitHub")}
|
|
|
- {buildLink("https://github.com/adventurist", "logicp GitHub")}
|
|
|
- {buildLink("https://wiki.stronglogicsolutions.com/", "StrongLogic Solutions Wikipedia site")}
|
|
|
- {buildLink("https://kserver.stronglogicsolutions.com/", "KServer Documentation")}
|
|
|
- {buildLink("https://kygui.stronglogicsolutions.com/", "KYGui Documentation")}
|
|
|
- {buildLink("https://blog.logicp.ca", "logicp Blog")}
|
|
|
- {buildLink("https://twitter.com/stronglogicp", "Twitter")}
|
|
|
- {buildLink("https://www.youtube.com/channel/UCK0xH_L9OBM0CVwC438bMGA", "YouTube")}
|
|
|
-
|
|
|
+ <div class="strong-links">
|
|
|
+ {buildLink(
|
|
|
+ "https://github.com/StronglogicSolutions/",
|
|
|
+ "StrongLogic Solutions GitHub"
|
|
|
+ )}
|
|
|
+ {buildLink("https://github.com/adventurist", "logicp GitHub")}
|
|
|
+ {buildLink(
|
|
|
+ "https://wiki.stronglogicsolutions.com/",
|
|
|
+ "StrongLogic Solutions Wikipedia site"
|
|
|
+ )}
|
|
|
+ {buildLink(
|
|
|
+ "https://kserver.stronglogicsolutions.com/",
|
|
|
+ "KServer Documentation"
|
|
|
+ )}
|
|
|
+ {buildLink(
|
|
|
+ "https://kygui.stronglogicsolutions.com/",
|
|
|
+ "KYGui Documentation"
|
|
|
+ )}
|
|
|
+ {buildLink("https://blog.logicp.ca", "logicp Blog")}
|
|
|
+ {buildLink("https://twitter.com/stronglogicp", "Twitter")}
|
|
|
+ {buildLink(
|
|
|
+ "https://www.youtube.com/channel/UCK0xH_L9OBM0CVwC438bMGA",
|
|
|
+ "YouTube"
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
);
|