diff --git a/public/favicon.ico b/public/favicon.ico index ac826e4..ff1bcd9 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html index 6831b00..f3eb032 100644 --- a/public/index.html +++ b/public/index.html @@ -20,7 +20,7 @@ You need to enable JavaScript to view the %REACT_APP_RADAR_NAME%.
diff --git a/public/robots.txt b/public/robots.txt deleted file mode 100644 index e9e57dc..0000000 --- a/public/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * -Disallow: diff --git a/src/components/FooterEnd/FooterEnd.tsx b/src/components/FooterEnd/FooterEnd.tsx index f16cc58..8026c27 100644 --- a/src/components/FooterEnd/FooterEnd.tsx +++ b/src/components/FooterEnd/FooterEnd.tsx @@ -66,7 +66,7 @@ export default function FooterEnd({ modifier }: { modifier?: "in-sidebar" }) {

diff --git a/src/components/PageToolbox/PageToolbox.tsx b/src/components/PageToolbox/PageToolbox.tsx deleted file mode 100644 index 490e1c3..0000000 --- a/src/components/PageToolbox/PageToolbox.tsx +++ /dev/null @@ -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 ( - - - Small AOE Toolbox -

-

Useful Tools

- -
    -
  • - Fiddler - free web debugging proxy ( http://www.telerik.com/fiddler - ) -
  • -
  • SoapUI - Webservice Test Tool (https://www.soapui.org/ )
  • -
  • Postman - API Test Tool ( https://www.getpostman.com/ )
  • -
  • - {" "} - Modelio - Simple free UML Modelling tool ( https://www.modelio.org/ - ) -
  • -
- -

Useful Tools (commercial)

- -
    -
  • Paw Rest Client
  • -
- -

Estabilshed Technologies

-

Not mentionable but adopted for a while now:

-
    -
  • Jenkins
  • -
  • Redis
  • -
  • Varnish
  • -
  • Symfony2
  • -
-
- - ); -}