diff --git a/components/CohabitInfoTable.css b/components/CohabitInfoTable.css new file mode 100644 index 0000000..ce30065 --- /dev/null +++ b/components/CohabitInfoTable.css @@ -0,0 +1,22 @@ +.components__cohabit_info_table { + display: grid; + gap: var(--_gap); + grid-template-columns: 1fr 1fr; + width: 100%; + + & section { + background-color: var(--_translucent); + padding: var(--_gap); + } + + & h3, + .components__cohabit_info__subtitle { + text-align: center; + } +} + +@media (width < 800px) { + .components__cohabit_info_table { + grid-template-columns: 1fr; + } +} diff --git a/components/CohabitInfoTable.tsx b/components/CohabitInfoTable.tsx new file mode 100644 index 0000000..9aba60e --- /dev/null +++ b/components/CohabitInfoTable.tsx @@ -0,0 +1,140 @@ +export function CohabitInfoTable() { + return ( +
+ + +
+ ) +} + +export function TechnoshopInfoTable() { + return ( +
+
+

Technoshop

+

+ Centre de ressources technologiques +

+
+
+

Public visé

+ +
+
+

Objectif

+

+ Placer l'innovation au cour d'une stratégie collaborative + inter-disciplinaires en alliant le potentiel humain et matériel de + l'IUT, de l'université de Bordeaux et du tissu industriel régional. +

+
+
+
Appui au labos
+ +
+
+
Projets B2B
+ +
+
+
Projets collaboratifs
+ +
+
+
R&D
+ +
+
+ ) +} + +export function FablabInfoTable() { + return ( +
+
+

FabLab

+

+ La technologie pour tous +

+
+
+

Public visé

+ +
+
+

Objectif

+

+ Repenser les pratiques expérimentales dans une approche + d'apprentissage par "le faire" et favoriser la transition numérique + dans une démarche collaborative. +

+
+
+
Qu'est-ce qu'on y trouve ?
+

+ Un espace ouvert sur des moyens de fabrication numériques pour + prototyper par soi-même des solutions technologiques. +

+
+
+
La formation
+ +
+
+
L'accompagnement
+ +
+
+ ) +} diff --git a/src/stylesheets/components.css b/src/stylesheets/components.css index f2f2d4f..1e13bd6 100644 --- a/src/stylesheets/components.css +++ b/src/stylesheets/components.css @@ -2,4 +2,5 @@ @import url('../../components/Footer.css'); @import url('../../components/Heros.css'); @import url('../../components/SponsorCards.css'); +@import url('../../components/CohabitInfoTable.css'); @import url('../../islands/ThemePicker.css');