+
+ {/* First col - CC & MIT */}
+
-
-
-
-
-
- {t('sloganCome')}
-
- {t('sloganStay')}
-
+
+
+
+
+
+
+ {translations.cc}
+
+
+
+
+
+ {translations.mit}
+
+
- {/* Second col - Social */}
+
+ {/* Second col - Social & Sponsors */}
{/* Social icons */}
@@ -78,6 +124,21 @@ export const Footer = ({ app }) => {
))}
+
+ {/* Col 3 - Logo & Slogan */}
+
+
+
+
+
+
+
+ {t('sloganCome')}
+
+ {t('sloganStay')}
+
+
+
)
diff --git a/packages/new-design/shared/tailwind.config.js b/packages/new-design/shared/tailwind.config.js
index b9a5ad0304d..0173fb24cc7 100644
--- a/packages/new-design/shared/tailwind.config.js
+++ b/packages/new-design/shared/tailwind.config.js
@@ -3,6 +3,11 @@ const themes = require('./shared/themes/index.js')
module.exports = {
content: [
+ './pages/*.mjs',
+ './pages/**/*.mjs',
+ './shared/**/*.mjs',
+ './lab/**/*.mjs',
+ // Legacy stuff, to be removed once everything is .mjs
'./pages/*.js',
'./pages/**/*.js',
'./shared/**/*.js',
@@ -20,8 +25,8 @@ module.exports = {
theme: {
extend: {
aspectRatio: {
- '9/16': '9 / 16'
- }
- }
- }
+ '9/16': '9 / 16',
+ },
+ },
+ },
}