Add more components

This commit is contained in:
Tom Raithel
2017-02-21 22:58:35 +01:00
parent f284b4b310
commit 33b4d112a0
9 changed files with 125 additions and 46 deletions

17
js/components/Footer.js Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react';
import Branding from './Branding';
export default function Footer() {
return (
<Branding
logoContent={<img src="/assets/logo.svg"/>}
>
<span className="footnote">
AOE is a leading provider of Enterprise Open Source web solutions.
Using current agile development methods, more than 250+ developers
and consultants in 8 global locations develop customized Open Source
solutions for global companies and corporations.
</span>
</Branding>
);
}