"use strict";

class HomePage {
    constructor(args) {
        Object.assign(this, args);
    }

    render() {
        return {
            tag: "div",
            contents: [
                {
                    tag: "h1",
                    contents: "Kuadrado Software",
                },
            ],
        };
    }
}

module.exports = HomePage;