2021-03-15 17:18:03 +00:00
|
|
|
import { Component } from "inferno";
|
|
|
|
import { LinkLine } from "./link-line";
|
2021-03-22 13:22:23 +00:00
|
|
|
import { T } from "inferno-i18next";
|
2021-03-15 17:18:03 +00:00
|
|
|
|
|
|
|
export class Footer extends Component<any, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<footer>
|
|
|
|
<br />
|
|
|
|
<nav class="nav">
|
|
|
|
<div class="nav-left">
|
|
|
|
<p style="padding-left: 2rem">
|
2021-03-22 13:22:23 +00:00
|
|
|
<T i18nKey="footer_desc">
|
|
|
|
#
|
|
|
|
<a class="footer-name" href="https://infernojs.org">
|
|
|
|
#
|
|
|
|
</a>
|
|
|
|
<a class="footer-name" href="https://jenil.github.io/chota">
|
|
|
|
#
|
|
|
|
</a>
|
|
|
|
</T>
|
2021-03-15 17:18:03 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="nav-right hide-sm hide-md hide-lg">
|
|
|
|
<LinkLine />
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</footer>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|