Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
software-development.js 1.68 KiB
Newer Older
  • Learn to ignore specific revisions
  • peter_rabbit's avatar
    peter_rabbit committed
    "use strict";
    
    
    peter_rabbit's avatar
    peter_rabbit committed
    const { images_url } = require("../../../constants");
    
    peter_rabbit's avatar
    peter_rabbit committed
    const SoftwareArticles = require("./components/software-articles");
    
    peter_rabbit's avatar
    peter_rabbit committed
    class SoftwareDevelopment {
        constructor(args) {
            Object.assign(this, args);
        }
    
        render() {
            return {
                tag: "div",
    
    peter_rabbit's avatar
    peter_rabbit committed
                id: "software-page",
    
    peter_rabbit's avatar
    peter_rabbit committed
                contents: [
                    {
    
    peter_rabbit's avatar
    peter_rabbit committed
                        tag: "div",
    
    peter_rabbit's avatar
    peter_rabbit committed
                        class: "page-header logo-left",
                        contents: [
                            {
                                tag: "div",
                                class: "page-contents-center grid-wrapper",
                                contents: [
                                    {
                                        tag: "div",
                                        class: "logo",
    
    peter_rabbit's avatar
    peter_rabbit committed
                                        contents: [
                                            {
                                                tag: "img",
                                                alt: `image mechanic electronic`,
                                                src: `${images_url}/meca_proc.svg`,
                                            },
                                        ],
    
    peter_rabbit's avatar
    peter_rabbit committed
                                    },
                                    { tag: "h1", contents: "Software" },
                                    {
                                        tag: "p",
    
    peter_rabbit's avatar
    peter_rabbit committed
                                        contents: `Développement web, moteurs de jeux et outillage logiciel.`,
    
    peter_rabbit's avatar
    peter_rabbit committed
                    },
    
    peter_rabbit's avatar
    peter_rabbit committed
                    new SoftwareArticles().render(),
    
    peter_rabbit's avatar
    peter_rabbit committed
                ],
            };
        }
    }
    
    module.exports = SoftwareDevelopment;