Use new favicon as default

Fix legal information link
Remove unused files
This commit is contained in:
dennis.ludwig
2021-06-28 16:48:07 +02:00
parent cc217cffb6
commit 29d9b9ef60
5 changed files with 2 additions and 56 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -20,7 +20,7 @@
<body> <body>
<noscript <noscript
>You need to enable JavaScript to view the AOE Technology Radar.</noscript >You need to enable JavaScript to view the %REACT_APP_RADAR_NAME%.</noscript
> >
<div id="root"></div> <div id="root"></div>
</body> </body>

View File

@@ -1,3 +0,0 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

View File

@@ -66,7 +66,7 @@ export default function FooterEnd({ modifier }: { modifier?: "in-sidebar" }) {
<div className="footer-copyright"> <div className="footer-copyright">
<p> <p>
<a <a
href="https://www.aoe.com/en/copyright-meta/legal-information.html" href="https://www.aoe.com/en/imprint.html"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >

View File

@@ -1,51 +0,0 @@
import React from "react";
import HeroHeadline from "../HeroHeadline/HeroHeadline";
import Fadeable from "../Fadeable/Fadeable";
import SetTitle from "../SetTitle";
export default function PageToolbox({
leaving,
onLeave,
}: {
leaving: boolean;
onLeave: () => void;
}) {
return (
<Fadeable leaving={leaving} onLeave={onLeave}>
<SetTitle title="Small AOE Toolbox" />
<HeroHeadline>Small AOE Toolbox</HeroHeadline>
<div className="fullpage-content">
<h3>Useful Tools</h3>
<ul>
<li>
Fiddler - free web debugging proxy ( http://www.telerik.com/fiddler
)
</li>
<li>SoapUI - Webservice Test Tool (https://www.soapui.org/ )</li>
<li>Postman - API Test Tool ( https://www.getpostman.com/ )</li>
<li>
{" "}
Modelio - Simple free UML Modelling tool ( https://www.modelio.org/
)
</li>
</ul>
<h3>Useful Tools (commercial)</h3>
<ul>
<li> Paw Rest Client</li>
</ul>
<h3>Estabilshed Technologies</h3>
<p>Not mentionable but adopted for a while now:</p>
<ul>
<li>Jenkins</li>
<li>Redis</li>
<li>Varnish</li>
<li>Symfony2</li>
</ul>
</div>
</Fadeable>
);
}