-
- );
-}
diff --git a/src/components/HomepageFeatures/styles.module.css b/src/components/HomepageFeatures/styles.module.css
deleted file mode 100644
index b248eb2..0000000
--- a/src/components/HomepageFeatures/styles.module.css
+++ /dev/null
@@ -1,11 +0,0 @@
-.features {
- display: flex;
- align-items: center;
- padding: 2rem 0;
- width: 100%;
-}
-
-.featureSvg {
- height: 200px;
- width: 200px;
-}
diff --git a/src/css/custom.css b/src/css/custom.css
deleted file mode 100644
index b878d8d..0000000
--- a/src/css/custom.css
+++ /dev/null
@@ -1,131 +0,0 @@
-/**
- * Any CSS included here will be global. The classic template
- * bundles Infima by default. Infima is a CSS framework designed to
- * work well for content-centric websites.
- */
-
-/* Ensure navbar items and logo are vertically aligned */
-.navbar__logo {
- display: flex;
- align-items: center; /* Center aligns the items vertically */
- height: 100%; /* Ensures full height for alignment */
-}
-
-.navbar__logo img {
- max-width: 150px; /* Set maximum width of the logo */
- height: auto; /* Maintain aspect ratio */
-}
-
-/* Align navbar items, such as Docs and Support */
-.navbar__item {
- display: flex;
- align-items: center; /* Vertically align the items */
-}
-
-/* Optional: Adjust padding for navbar items */
-.navbar__link {
- padding: 8px 12px; /* Modify values as necessary for better spacing */
-}
-
-/* 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;
- --ifm-color-primary-dark: #29784c;
- --ifm-color-primary-darker: #277148;
- --ifm-color-primary-darkest: #205d3b;
- --ifm-color-primary-light: #33925d;
- --ifm-color-primary-lighter: #359962;
- --ifm-color-primary-lightest: #3cad6e;
- --ifm-code-font-size: 95%;
- --svg-fill-color: #2a2021; /* Black fill for light mode */
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
-}
-
-/* Dark mode styles */
-html[data-theme="dark"] {
- --svg-fill-color: #fff; /* White fill for dark mode */
-}
-
-/* For readability concerns, you should choose a lighter palette in dark mode. */
-[data-theme='dark'] {
- --ifm-color-primary: #8d8d8d;
- --ifm-color-primary-dark: #21af90;
- --ifm-color-primary-darker: #1fa588;
- --ifm-color-primary-darkest: #1a8870;
- --ifm-color-primary-light: #29d5b0;
- --ifm-color-primary-lighter: #32d8b4;
- --ifm-color-primary-lightest: #4fddbf;
- --svg-fill-color: #fff; /* White fill for dark mode */
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
-}
-.footer {
- background-color: #131213;
-}
-.footer a,
-.footer p,
-.footer span,
-.footer div {
- color: #ffffff; /* Example: Light gray text for dark mode */
-}
-.navbar { /* or .navbar--fixedTop if it has that class */
- background-color: #131213;
-}
-
-/* Apply scroll margin to footnote targets */
-[data-footnote-ref="true"] {
- scroll-margin-top: 80px; /* Adjust this value to match your navbar height */
-}
-
-/* Ensure navbar items and logo are vertically aligned */
-.navbar__logo {
- display: flex;
- align-items: center; /* Center aligns the items vertically */
- height: 100%; /* Ensures full height for alignment */
-}
-
-.navbar__link { /* Example: for navbar links */
- color: #ffffff;
-}
-img.svg-icon {
- fill: var(--svg-fill-color); /* Apply the color variable */
-}
\ No newline at end of file
diff --git a/src/pages/index.module.css b/src/pages/index.module.css
deleted file mode 100644
index 9f71a5d..0000000
--- a/src/pages/index.module.css
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * CSS files with the .module.css suffix will be treated as CSS modules
- * and scoped locally.
- */
-
-.heroBanner {
- padding: 4rem 0;
- text-align: center;
- position: relative;
- overflow: hidden;
-}
-
-@media screen and (max-width: 996px) {
- .heroBanner {
- padding: 2rem;
- }
-}
-
-.buttons {
- display: flex;
- align-items: center;
- justify-content: center;
-}
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
deleted file mode 100644
index e0d4f56..0000000
--- a/src/pages/index.tsx
+++ /dev/null
@@ -1,6 +0,0 @@
-import React from 'react';
-import { Redirect } from '@docusaurus/router';
-
-export default function Home() {
- return ;
-}
\ No newline at end of file
diff --git a/src/pages/markdown-page.md b/src/pages/markdown-page.md
deleted file mode 100644
index 9756c5b..0000000
--- a/src/pages/markdown-page.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: Markdown page example
----
-
-# Markdown page example
-
-You don't need React to write simple standalone pages.
diff --git a/src/pages/support.md b/src/pages/support.md
deleted file mode 100644
index 6c27c15..0000000
--- a/src/pages/support.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# Support
-
-Our dedicated team is here to help you every step of the way. We're passionate about ensuring that you receive the best possible experience exploring the ThreeFold ecosystem.
-
-If you can't find the answer to your question, our dedicated ThreeFold support team is here to help.
-
-## Reach Support
-
-To contact the ThreeFold support team, visit the [ThreeFold Support Crisp website](https://threefoldfaq.crisp.help/en/).
-
-## Live Chat Availability
-
-Our support team is available from Monday to Friday, Central European Summer Time (CEST), between 8:00 AM and 12:00 AM (16 hours per day). During these hours, you can interact with us in real-time via live chat on the ThreeFold website.
-
-* **Monday to Friday**: Available from 8:00 AM to 12:00 AM CEST
-
-> Outside of these hours, you can still write to the support team and they will get back to you during working hours.
-
-## How We Can Help
-
-Our support team is here to assist you with any questions or concerns you may have about ThreeFold. Whether it's troubleshooting an issue, setting up a new feature, or simply answering a question, we're here to help.
-
-### Support Services
-* **Technical Support**: Assistance with technical issues related to ThreeFold.
-* **Feature Setup**: Guidance on how to set up and use various ThreeFold features, services and products.
-* **General Questions**: Answers to any questions you may have about ThreeFold.
-
-## Get In Touch
-
-Ready to reach out? Simply visit the [ThreeFold Support Crisp website](https://threefoldfaq.crisp.help/en/) and initiate a chat with us during business hours.
-
-*We're here to listen, assist, and provide support!*
-
----
diff --git a/static/.nojekyll b/static/.nojekyll
deleted file mode 100644
index e69de29..0000000
diff --git a/static/CNAME b/static/CNAME
deleted file mode 100644
index 339ae8f..0000000
--- a/static/CNAME
+++ /dev/null
@@ -1 +0,0 @@
-threefold.info/decloud
\ No newline at end of file
diff --git a/static/fonts/Inter_28pt-Light.ttf b/static/fonts/Inter_28pt-Light.ttf
deleted file mode 100644
index 5eeff3a..0000000
Binary files a/static/fonts/Inter_28pt-Light.ttf and /dev/null differ
diff --git a/static/fonts/Inter_28pt-Medium.ttf b/static/fonts/Inter_28pt-Medium.ttf
deleted file mode 100644
index 00120fe..0000000
Binary files a/static/fonts/Inter_28pt-Medium.ttf and /dev/null differ
diff --git a/static/fonts/Inter_28pt-Regular.ttf b/static/fonts/Inter_28pt-Regular.ttf
deleted file mode 100644
index 855b6f4..0000000
Binary files a/static/fonts/Inter_28pt-Regular.ttf and /dev/null differ
diff --git a/static/js/crisp.js b/static/js/crisp.js
deleted file mode 100644
index 9e5aaa5..0000000
--- a/static/js/crisp.js
+++ /dev/null
@@ -1 +0,0 @@
-window.$crisp=[];window.CRISP_WEBSITE_ID="1a5a5241-91cb-4a41-8323-5ba5ec574da0";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();
\ No newline at end of file
diff --git a/tsconfig.json b/tsconfig.json
deleted file mode 100644
index 7a35633..0000000
--- a/tsconfig.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- // This file is not used in compilation. It is here just for a nice editor experience.
- "extends": "@docusaurus/tsconfig",
- "compilerOptions": {
- "baseUrl": "docs"
- }
-}