Newer
Older
"use strict";
const { images_url } = require("../../../../constants");
const SKILL_THEMES = [
"Applications web",
"Service backend, serveur, API REST, bases de données",
"Sites web statiques, serveurs de fichiers",
"Développement frontend, interfaces",
"Conception et design UX / UI",
"Création graphique bitmap et vectoriel",
"Prototypes embarqués, IoT, Arduino",
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"Applications Android",
];
const SKILL_STACK = [
["Javascript", "js.png"],
["Node.js", "node.png"],
["React.js", "react.png"],
["Python", "python.png"],
["C/C++", "c.png"],
["Rust", "rust.png"],
["MySQL", "mysql.png"],
["PostgreSQL", "postgre.png"],
["MongoDB", "mongodb.png"],
["HTML", "html.png"],
["CSS", "css.png"],
["Sass", "sass.png"],
["Docker", "docker.png"],
["Linux", "linux.png"],
["Nginx", "nginx.png"],
["Apache", "apache.png"],
];
class ServiceSection {
render() {
return {
tag: "section",
class: "page-contents-center",
id: "service-section",
contents: [
{
tag: "h3",
contents:
"<blue>Nos compétences</blue> pour votre besoin <blue>numérique</blue>",
},
{
tag: "p",
contents: `
La demande numérique est omniprésente et de nombreuses entreprises ont besoin de bénéficier d'outils spécifiques réalisés sur mesure,
applications web et mobiles, site statiques, logiciels, ERP, etc, mais n'ont pas forcément les compétences chez elles,
et n'ont pas non plus un besoin suffisamment grand pour embaucher une équipe de développement.
<br /><br />
<b><blue>Kuadrado</blue></b> propose de répondre à ce cas de figure pour les entreprises et organisations locales
(Ardèche, Drôme, Rhône, Loire, Haute-Loire...) en étant leur <b>partenaire en développement <blue>web et logiciel</blue></b>.`,
},
{
tag: "p",
class: "teaser",
contents: [
{
tag: "strong",
contents:
"Des solutions <blue>sur mesure, légères, simples, maintenables, scalables et écologiques</blue>",
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
},
],
},
{
tag: "div",
class: "skills",
contents: [
{
tag: "ul",
class: "skill-themes",
contents: SKILL_THEMES.map(item => {
return { tag: "li", contents: item };
}),
},
{
tag: "ul",
class: "skill-stack",
contents: SKILL_STACK.map(item => {
const [title, img] = item;
return {
tag: "li",
contents: [
{
tag: "strong",
contents: title,
},
{
tag: "img",
src: `${images_url}tech_logos/${img}`,
},
],
};
}),
},
{
tag: "div",
class: "call-us",
contents: [
{
tag: "h3",
contents: `Un <blue>projet à réaliser</blue> ?
<br/>Besoin d'informations, de conseils ou d'un <blue>devis</blue> ?`,
},
{
tag: "a",
href: "mailto:contact@kuadrado-software.fr",
contents: "contact@kuadrado-software.fr",
},
{
tag: "a",
href: "tel:+33475780872",
contents: "04 75 78 08 72",
},
],
},
],
},
],
};
}
}
module.exports = ServiceSection;