"use strict"; const { images_url } = require("../../../constants"); const GameStudioClub = require("./components/game-studio-club"); const Popularization = require("./components/popularization"); class EducationPage { constructor(args) { Object.assign(this, args); } render() { return { tag: "div", id: "education-page", contents: [ { tag: "div", class: "page-header logo-left", contents: [ { tag: "div", class: "page-contents-center grid-wrapper", contents: [ { tag: "div", class: "logo", contents: [{ tag: "img", src: `${images_url}/brain.svg` }], }, { tag: "h1", contents: "PĂ©dagogie" }, { tag: "p", contents: `DĂ©mystifier et s'approprier la technologie par le partage de connaissances.`, }, ], }, ], }, new GameStudioClub().render(), new Popularization().render(), ], }; } } module.exports = EducationPage;