diff --git a/components/Header.tsx b/components/Header.tsx index f090fdc..f8893f6 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -30,14 +30,6 @@ const solutions = [ href: 'https://docs.feature.sh', icon: BookOpenIcon, }, - /* - { - name: 'Blog', - description: "Your customers' data will be safe and secure.", - href: '#', - icon: ChatIcon, - }, - */ ] const resources = [ { @@ -103,15 +95,9 @@ const Header: React.FC = () => {
- - {translate('navitem_features')} - {translate('navitem_docs')} @@ -119,13 +105,13 @@ const Header: React.FC = () => {
{translate('navitem_dashboard')} {translate('navitem_book')} diff --git a/pages/_app.tsx b/pages/_app.tsx index 2519349..b1f63bc 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -47,6 +47,13 @@ const MyApp = ({ Component, pageProps }: AppPropsWithLayout) => { })(window,document,'script','dataLayer','GTM-5QL9D3K'); `} + {withLayout()} ) diff --git a/pages/index.tsx b/pages/index.tsx index 448e140..7870c03 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -31,62 +31,18 @@ const HeroSection: React.FC = () => { const { t: translate } = useTranslation('homepage') return ( -
-
- Github logo -
- -
-
-
-
-

- - {translate('hero_heading_part1')} - - - {translate('hero_heading_part2')} - -

-

- {translate('hero_subheading')} -

- -
-
-
- Snippet code -
+ <> +
+
+

+ 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)' },