-
-
-
-
- {translate('hero_heading_part1')}
-
-
- {translate('hero_heading_part2')}
-
-
-
- {translate('hero_subheading')}
-
-
-
-
-
-
-
+ <>
+
+
+
+ WEB3 DEVTOOL
+
+
+ 🏁The Fatest Way to Fix Github Issues 🐙 for Open Source Project 🦄
+
-
+ >
)
}
diff --git a/public/Hubot-Sans.woff b/public/Hubot-Sans.woff
new file mode 100644
index 0000000..282c099
Binary files /dev/null and b/public/Hubot-Sans.woff differ
diff --git a/public/Hubot-Sans.woff2 b/public/Hubot-Sans.woff2
new file mode 100644
index 0000000..5089fc4
Binary files /dev/null and b/public/Hubot-Sans.woff2 differ
diff --git a/public/locales/en-US/header.json b/public/locales/en-US/header.json
index 1f4e167..365be8f 100644
--- a/public/locales/en-US/header.json
+++ b/public/locales/en-US/header.json
@@ -2,7 +2,7 @@
"navitem_product": "Product",
"navitem_features": "Product",
"navitem_blog": "Blog",
- "navitem_docs": "Docs",
+ "navitem_docs": "Docs ↗",
"navitem_dashboard": "Sign In",
"navitem_book": "Book a Demo",
"navitem_pricing": "Pricing"
diff --git a/public/locales/fr/header.json b/public/locales/fr/header.json
index c45b798..c2cf77e 100644
--- a/public/locales/fr/header.json
+++ b/public/locales/fr/header.json
@@ -2,7 +2,7 @@
"navitem_product": "Produit",
"navitem_features": "Produit",
"navitem_blog": "Blog",
- "navitem_docs": "Docs",
+ "navitem_docs": "Docs ↗",
"navitem_dashboard": "Se Connecter",
"navitem_book": "Réserver une Démo",
"navitem_pricing": "Prix"
diff --git a/styles/globals.css b/styles/globals.css
index fef8df2..ba0c6fe 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -2,8 +2,23 @@
@tailwind components;
@tailwind utilities;
+@font-face {
+ font-family: 'Hubot Sans';
+ src:
+ url('../public/Hubot-Sans.woff2') format('woff2 supports variations'),
+ url('../public/Hubot-Sans.woff2') format('woff2-variations');
+ font-weight: 200 900;
+ font-stretch: 75% 125%;
+}
+
html, body, #__next {
height: 100%;
- background: linear-gradient(90deg, #000 calc(100% - 1px), #fdcece 0);
- background-size: calc((100% - 11px)/12 + 11px) 100%;
-}
\ No newline at end of file
+ background: linear-gradient(90deg, #fff calc(100% - 1px), #fdcece 0);
+ background-size: calc((100% - 11*11px)/12 + 11px) 100%;
+}
+
+.hubot-sans {
+ font-family: 'Hubot Sans', sans-serif;
+ font-weight: 900;
+ font-stretch: 125%;
+}
diff --git a/tailwind.config.js b/tailwind.config.js
index 71f0d24..35bb0aa 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -5,6 +5,9 @@ module.exports = {
],
theme: {
extend: {
+ fontFamily: {
+ hubot: ['Hubot Sans', 'sans-serif'],
+ },
keyframes: {
growingFadeIn: {
from: { opacity: '0', transform: 'scale(0.95)' },