mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2025-01-11 20:45:49 +00:00
0aad0392bc
* Initial inferno commit. * Fixing husky * Fixing submodule * Removing extra dockerfile lines * Some cleanup, refactoring into components * Testing out a drone build. * Removing lemmy-docs * Removing gitmodules * Trying to add again * Don't init. * check folder. * check folder 2. * Removing lemmy-docs again * Adding lemmy-docs again * Adding submodule init. * Removing ls. * Trying a first docker deploy. * Removing arm64 build. * Upgrading deps, fixing links.
36 lines
873 B
TypeScript
36 lines
873 B
TypeScript
import { Component } from "inferno";
|
|
import { LinkLine } from "./link-line";
|
|
|
|
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">
|
|
Made with
|
|
<a style="display: inline-block" href="https://infernojs.org">
|
|
Inferno
|
|
</a>
|
|
and
|
|
<a
|
|
style="display: inline-block"
|
|
href="https://jenil.github.io/chota"
|
|
>
|
|
Chota
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div class="nav-right hide-sm hide-md hide-lg">
|
|
<LinkLine />
|
|
</div>
|
|
</nav>
|
|
</footer>
|
|
);
|
|
}
|
|
}
|