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 2.19 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",
    
                                        contents: `Développement web, moteur de jeux ou outillage logiciel, 
                                        si nous avons besoin d'un service numérique et qu'il 
    
    peter_rabbit's avatar
    peter_rabbit committed
                                        est pertinent (ou juste que ça nous fait plaisir) de le développer 
                                        nous-même, nous essayons au maximum de le réaliser de façon générique 
    
                                        et de le publier sous license libre et open source.
                                        <br/><br/>Nous pouvons également fournir ce service pour d'autres entreprises.`,
    
    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;