diff --git a/docs_website/docs/litepaper.md b/docs_website/docs/litepaper.md index 15f1513..b8e5896 100644 --- a/docs_website/docs/litepaper.md +++ b/docs_website/docs/litepaper.md @@ -6,8 +6,6 @@ sidebar_position: 2 > *ThreeFold presents Project Mycelium, a self-healing data, network and cloud Internet insfrastructure laying the foundation for Web4.* -# ![|640x456.89972513675843](https://lh7-rt.googleusercontent.com/docsz/AD_4nXdxe-bOae_qPzz_eHjjwqFVwD7KbOHXq_cG_3QuslDjZPrkKkAQGWbfxH3U1X27zBthn6DYRpqoDuQv4ufx5sp9YBP68_vZgAzT0YlaO4PaW-Uu2E2vlKW4v4cs9SgoM4dIYhdCOw?key=FFljbee7w6SKHobQaUuiib21) - ## ThreeFold - Web4 Launch The Internet today has major problems: it’s less reliable than we think, spreads misinformation, lacks privacy and security, leaves 50% of the world poorly connected, and allows big tech to monitor and influence us. Ultimately, it enables the powerful to become even more powerful. diff --git a/docs_website/docusaurus.config.ts b/docs_website/docusaurus.config.ts index 8ea96e9..f1675f2 100644 --- a/docs_website/docusaurus.config.ts +++ b/docs_website/docusaurus.config.ts @@ -94,7 +94,7 @@ const config: Config = { // Replace with your project's social card image: 'img/threefold-social-card.png', navbar: { - title: 'ThreeFold', + title: 'THREEFOLD', logo: { alt: 'ThreeFold Logo', src: 'img/logo.svg', diff --git a/docs_website/src/css/custom.css b/docs_website/src/css/custom.css index 7e6ca47..d816635 100644 --- a/docs_website/src/css/custom.css +++ b/docs_website/src/css/custom.css @@ -4,6 +4,46 @@ * work well for content-centric websites. */ +/* Add @font-face declarations for the Inter font */ +@font-face { + font-family: 'Inter'; + font-weight: 400; /* Light */ + font-style: normal; + src: url('/fonts/Inter_28pt-Light.ttf') format('truetype'); /* Corrected path */ +} + +@font-face { + font-family: 'Inter'; + font-weight: 500; /* Regular */ + font-style: normal; + src: url('/fonts/Inter_28pt-Regular.ttf') format('truetype'); /* Corrected path */ +} + +@font-face { + font-family: 'Inter'; + font-weight: 600; /* Medium */ + font-style: normal; + src: url('/fonts/Inter_28pt-Medium.ttf') format('truetype'); /* Corrected path */ +} + +/* Apply the Inter font globally */ +body { + font-family: 'Inter', sans-serif; /* Set the global font */ + font-size: 18px; +} + +/* Header styles - Medium weight for headers */ +h1, h2, h3, h4, h5, h6 { + font-weight: 600; /* Medium weight for headers */ + font-family: 'Inter', sans-serif; /* Set the global font */ +} + +/* Paragraph styles - Light weight for paragraphs */ +p { + font-weight: 400; /* Light weight for paragraphs */ + font-family: 'Inter', sans-serif; /* Set the global font */ +} + /* You can override the default Infima variables here. */ :root { --ifm-color-primary: #2e83ff; diff --git a/docs_website/static/fonts/Inter_28pt-Light.ttf b/docs_website/static/fonts/Inter_28pt-Light.ttf new file mode 100644 index 0000000..5eeff3a Binary files /dev/null and b/docs_website/static/fonts/Inter_28pt-Light.ttf differ diff --git a/docs_website/static/fonts/Inter_28pt-Medium.ttf b/docs_website/static/fonts/Inter_28pt-Medium.ttf new file mode 100644 index 0000000..00120fe Binary files /dev/null and b/docs_website/static/fonts/Inter_28pt-Medium.ttf differ diff --git a/docs_website/static/fonts/Inter_28pt-Regular.ttf b/docs_website/static/fonts/Inter_28pt-Regular.ttf new file mode 100644 index 0000000..855b6f4 Binary files /dev/null and b/docs_website/static/fonts/Inter_28pt-Regular.ttf differ