This commit is contained in:
despiegk 2025-01-20 09:33:07 +01:00
parent fd9c86c743
commit fe2e84f250
3 changed files with 10 additions and 34 deletions

View File

@ -1,5 +1,6 @@
--- ---
sidebar_position: 1 sidebar_position: 1
slug: /
--- ---
![](img/web0.png) ![](img/web0.png)

View File

@ -3,34 +3,8 @@ import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic'; import type * as Preset from '@docusaurus/preset-classic';
const config: Config = { const config: Config = {
title: 'ThreeFold Tech', title: 'ThreeFold',
tagline: 'Self-Healing Data & Cloud Network', tagline: 'Geo Aware Internet Platform',
favicon: 'img/favicon.png',
url: 'https://threefold.info',
baseUrl: '/tftech/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: {
sidebarPath
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'ThreeFold Tech',
tagline: 'Self-Healing Data & Cloud Network',
favicon: 'img/favicon.png', favicon: 'img/favicon.png',
url: 'https://threefold.info', url: 'https://threefold.info',
@ -91,10 +65,10 @@ const config: Config = {
}, },
image: 'img/tf_graph.png', image: 'img/tf_graph.png',
metadata: [ metadata: [
{ name: 'description', content: 'ThreeFold is laying the foundation for Web4, the next generation of the Internet.' }, { name: 'description', content: 'ThreeFold is laying the foundation for a geo aware Web 0, the next generation of the Internet.' },
{ property: 'og:image', content: 'https://threefold.info/tftech/img/tf_graph.png' }, { property: 'og:image', content: 'https://threefold.info/tftech/img/tf_graph.png' },
{ property: 'og:description', content: 'ThreeFold is laying the foundation for Web4, the next generation of the Internet.' }, { property: 'og:description', content: 'ThreeFold is laying the foundation for a geo aware Web 0, the next generation of the Internet.' },
{ property: 'og:title', content: 'Introduction | ThreeFold Docs' }, { property: 'og:title', content: 'ThreeFold Technology Vision' },
], ],
navbar: { navbar: {
title: '', title: '',
@ -107,7 +81,8 @@ const config: Config = {
type: 'docSidebar', type: 'docSidebar',
sidebarId: 'mainSidebar', sidebarId: 'mainSidebar',
position: 'left', position: 'left',
label: 'Home', label: 'Docs',
slug: '/'
}, },
{ {
href: 'https://docs.threefold.io/', href: 'https://docs.threefold.io/',
@ -141,7 +116,7 @@ const config: Config = {
items: [ items: [
{ {
label: 'Introduction', label: 'Introduction',
to: '/docs/introduction', to: '/docs',
}, },
{ {
label: 'V3 Manual', label: 'V3 Manual',

View File

@ -2,5 +2,5 @@ import React from 'react';
import { Redirect } from '@docusaurus/router'; import { Redirect } from '@docusaurus/router';
export default function Home() { export default function Home() {
return <Redirect to="/tftech/docs/introduction" />; return <Redirect to="/tftech/docs" />;
} }