21 lines
919 B
JavaScript
21 lines
919 B
JavaScript
import AbstractView from "./abstracts/AbstractView.js";
|
|
|
|
export default class extends AbstractView {
|
|
constructor(params) {
|
|
super(params, "Dashboard");
|
|
}
|
|
|
|
async getHtml() {
|
|
return `
|
|
<h1>Welcome back, Dom</h1>
|
|
<p>
|
|
Akel is a game engine designed to be easy to use. The purpose of the project is learning about game engine development, discovering new rendering processes and learning to use new tools. It is mainly coded on and for Linux but is cross-platform and has been tested on Windows and MacOS.
|
|
</p>
|
|
<p>
|
|
<a href="https://cdn.discordapp.com/attachments/1198285289236463699/1211450599007064074/malonerd.png?ex=6600b34a&is=65ee3e4a&hm=359877a4259663411dc24383562193e0e8862774022ca9989b6960f6628f1e2c&">Akel Engine</a>.
|
|
<a href="/posts" data-link>View recent posts</a>.
|
|
</p>
|
|
`;
|
|
}
|
|
}
|