diff --git a/.gitignore b/.gitignore index 1d940f0..055a53f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,183 +1,23 @@ -# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore +# Dependencies +/node_modules -# Logs +# Production +/build -logs -_.log -npm-debug.log_ -yarn-debug.log* -yarn-error.log* -lerna-debug.log* -.pnpm-debug.log* +# Generated files +.docusaurus +.cache-loader -# Caches - -.cache - -# Diagnostic reports (https://nodejs.org/api/report.html) - -report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json - -# Runtime data - -pids -_.pid -_.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover - -lib-cov - -# Coverage directory used by tools like istanbul - -coverage -*.lcov - -# nyc test coverage - -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) - -.grunt - -# Bower dependency directory (https://bower.io/) - -bower_components - -# node-waf configuration - -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) - -build/Release - -# Dependency directories - -node_modules/ -jspm_packages/ - -# Snowpack dependency directory (https://snowpack.dev/) - -web_modules/ - -# TypeScript cache - -*.tsbuildinfo - -# Optional npm cache directory - -.npm - -# Optional eslint cache - -.eslintcache - -# Optional stylelint cache - -.stylelintcache - -# Microbundle cache - -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history - -.node_repl_history - -# Output of 'npm pack' - -*.tgz - -# Yarn Integrity file - -.yarn-integrity - -# dotenv environment variable files - -.env +# Misc +.DS_Store +.env.local .env.development.local .env.test.local .env.production.local -.env.local - -# parcel-bundler cache (https://parceljs.org/) - -.parcel-cache - -# Next.js build output - -.next -out - -# Nuxt.js build / generate output - -.nuxt -dist - -# Gatsby files - -# Comment in the public line in if your project uses Gatsby and not Next.js - -# https://nextjs.org/blog/next-9-1#public-directory-support - -# public - -# vuepress build output - -.vuepress/dist - -# vuepress v2.x temp and cache directory - -.temp - -# Docusaurus cache and generated files - -.docusaurus - -# Serverless directories - -.serverless/ - -# FuseBox cache - -.fusebox/ - -# DynamoDB Local files - -.dynamodb/ - -# TernJS port file - -.tern-port - -# Stores VSCode versions used for testing VSCode extensions - -.vscode-test - -# yarn v2 - -.yarn/cache -.yarn/unplugged -.yarn/build-state.yml -.yarn/install-state.gz -.pnp.* - -# IntelliJ based IDEs -.idea - -# Finder (MacOS) folder config -.DS_Store +npm-debug.log* +yarn-debug.log* +yarn-error.log* bun.lockb -build/ - - -pnpm-lock.yaml -package-lock.json +yarn.lock diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index e00595d..0000000 --- a/babel.config.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - presets: [require.resolve('@docusaurus/core/lib/babel/preset')], -}; diff --git a/blog/AI_system_components.md b/blog/AI_system_components.md deleted file mode 100644 index a5fdd40..0000000 --- a/blog/AI_system_components.md +++ /dev/null @@ -1,133 +0,0 @@ ---- -slug: ai_more_than_llm -title: 'AI is more than LLM.' -authors: [tf9cloud] -tags: [info, tech] -image: img/quantum_ai.png ---- - -![](img/quantum_ai.png) - -# The Main Elements of AI Systems - -AI systems are complex and multifaceted, built from a combination of technologies and components that work together to process data, learn from it, and execute tasks autonomously or semi-autonomously. Below is an overview of the main elements that constitute an AI system: - ---- - -### 1. **Large Language Models (LLMs)** -- **Description**: LLMs are advanced neural networks trained on extensive datasets of text. They generate human-like text and understand natural language with remarkable precision. -- **Key Capabilities**: - - Language understanding and generation. - - Summarization, translation, and sentiment analysis. - - Context-aware conversations and content creation. - ---- - -### 2. **AI Databases** -- **Description**: Specialized databases optimized for storing, retrieving, and managing large volumes of data required for AI training and inference. -- **Types**: - - Vector Databases: For managing embeddings and similarity searches. - - Time-Series Databases: For processing real-time data streams. - - Knowledge Graphs: For structured, relationship-focused data storage. -- **Purpose**: - - Efficiently manage and serve data for training and operational tasks. - - Enable insights and decision-making through structured and unstructured data. - ---- - -### 3. **AI Agents** -- **Description**: Autonomous or semi-autonomous entities that interact with the environment, learn, and perform tasks. -- **Key Features**: - - Goal-oriented behavior. - - Ability to adapt based on feedback. - - Multi-agent systems for collaborative problem-solving. -- **Applications**: - - Chatbots, virtual assistants, and robotic systems. - ---- - -### 4. **Data Pipelines** -- **Description**: Infrastructure for collecting, cleaning, processing, and transforming raw data into a format usable by AI models. -- **Components**: - - ETL Processes (Extract, Transform, Load). - - Data lakes and warehouses. - - Monitoring and quality control tools. -- **Importance**: - - Ensures high-quality, reliable data for training and inference. - ---- - -### 5. **Inference Engines** -- **Description**: Systems or components that utilize trained AI models to make predictions, decisions, or generate outputs in real time. -- **Characteristics**: - - Optimized for low-latency operations. - - Often deployed at scale in production environments. - ---- - -### 6. **Machine Learning Frameworks** -- **Description**: Software libraries and tools that provide a foundation for building, training, and deploying AI models. -- **Popular Frameworks**: - - TensorFlow, PyTorch, Scikit-learn. -- **Role**: - - Simplify the process of creating and experimenting with models. - - Enable scalability and compatibility across platforms. - ---- - -### 7. **Model Training Infrastructure** -- **Description**: High-performance computing environments designed to handle the resource-intensive process of training AI models. -- **Components**: - - GPU/TPU clusters for acceleration. - - Distributed computing setups. - - Hyperparameter optimization tools. -- **Outcome**: - - Produces optimized models ready for deployment. - ---- - -### 8. **Deployment and Integration Systems** -- **Description**: Platforms that host trained AI models and integrate them into applications. -- **Capabilities**: - - Containerization (e.g., Docker, Kubernetes). - - APIs for seamless interaction. - - Continuous delivery pipelines for updates. - ---- - -### 9. **Ethics and Governance Frameworks** -- **Description**: Guidelines and systems for ensuring AI systems are fair, transparent, and aligned with ethical standards. -- **Key Elements**: - - Bias detection and mitigation tools. - - Privacy-preserving techniques (e.g., differential privacy). - - Compliance with regulations and best practices. - ---- - -### 10. **Feedback Loops** -- **Description**: Mechanisms to continuously improve AI models based on user interactions and real-world performance. -- **Features**: - - Real-time data collection. - - Retraining pipelines for adaptive learning. -- **Outcome**: - - Enhances accuracy and relevance over time. - ---- - -### 11. **Human-AI Interfaces** -- **Description**: User-facing components that enable intuitive interaction between humans and AI systems. -- **Examples**: - - Dashboards, voice interfaces, and augmented reality tools. -- **Goal**: - - Make AI accessible and actionable for end users. - ---- - -### 12. **Specialized Hardware** -- **Description**: Custom hardware optimized for AI tasks, such as: - - GPUs, TPUs, and ASICs for acceleration. - - Neuromorphic chips for energy-efficient computing. -- **Purpose**: - - Enhance performance and reduce operational costs. - - diff --git a/blog/authors.yml b/blog/authors.yml deleted file mode 100644 index ea9e87a..0000000 --- a/blog/authors.yml +++ /dev/null @@ -1,5 +0,0 @@ -tf9cloud: - name: Veda Team - title: Digital Innovation Team - url: https://ourworld.tf/tf9cloud - image_url: /img/logo.svg diff --git a/blog/img/quantum_ai.png b/blog/img/quantum_ai.png deleted file mode 100644 index 690018a..0000000 Binary files a/blog/img/quantum_ai.png and /dev/null differ diff --git a/build.sh b/build.sh deleted file mode 100755 index 8c7c02b..0000000 --- a/build.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -set -ex - -script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -cd "${script_dir}" - -export PATH=${BASE}/node_modules/.bin:$PATH - - -echo "Docs directory: $script_dir" - -#bun build -#bun ${script_dir}/node_modules/.bin/docusaurus build - -rm -rf build -cp buildchoice/biz_navbar.ts navigation/navbar.ts -cp buildchoice/biz_docusaurus.config.ts docusaurus.config.ts -pnpm build -rsync -rv --delete ${script_dir}/build/ root@info.ourworld.tf:/root/hero/www/info/veda/ - -rm -rf build -cp buildchoice/coown_navbar.ts navigation/navbar.ts -cp buildchoice/coown_docusaurus.config.ts docusaurus.config.ts -pnpm build -rsync -rv --delete ${script_dir}/build/ root@info.ourworld.tf:/root/hero/www/info/veda1234/ diff --git a/buildchoice/biz_docusaurus.config.ts b/buildchoice/biz_docusaurus.config.ts deleted file mode 100644 index eaa59ed..0000000 --- a/buildchoice/biz_docusaurus.config.ts +++ /dev/null @@ -1,75 +0,0 @@ -import {themes as prismThemes} from 'prism-react-renderer'; -import type {Config} from '@docusaurus/types'; -import type * as Preset from '@docusaurus/preset-classic'; -import { navbar } from './navigation/navbar'; -import { footer } from './navigation/footer'; -import type * as Redocusaurus from 'redocusaurus'; - -const config: Config = { - title: 'Veda', - tagline: 'Lets build Augmented Collective Intelligence.', - favicon: 'img/favicon.svg', - - url: 'https://info.ourworld.tf', - baseUrl: '/veda/', - - onBrokenLinks: 'warn', - onBrokenMarkdownLinks: 'warn', - - i18n: { - defaultLocale: 'en', - locales: ['en'], - }, - - presets: [ - [ - 'classic', - { - docs: { - sidebarPath: './navigation/sidebars.ts', - path: 'docs/', - routeBasePath: '/', - remarkPlugins: [], - rehypePlugins: [], - beforeDefaultRemarkPlugins: [], - beforeDefaultRehypePlugins: [], - }, - blog: { - showReadingTime: true, - editUrl: 'https://www.veda-egypt.com/', - postsPerPage: 8, - blogSidebarCount: 20, - }, - theme: { - customCss: './src/css/custom.css', - }, - } satisfies Preset.Options], - ], - markdown: { - mermaid: true, - }, - themes: ['@docusaurus/theme-mermaid'], - - themeConfig: { - docs: { - sidebar: { - hideable: false, - autoCollapseCategories: false, - } - }, - colorMode: { - defaultMode: 'dark', - disableSwitch: true, - respectPrefersColorScheme: true, - }, - image: 'img/favicon.svg', - navbar, - footer, - prism: { - theme: prismThemes.dracula, - darkTheme: prismThemes.dracula, - }, - } satisfies Preset.ThemeConfig, -}; - -export default config; diff --git a/buildchoice/biz_navbar.ts b/buildchoice/biz_navbar.ts deleted file mode 100644 index e9ee5e6..0000000 --- a/buildchoice/biz_navbar.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { ThemeConfig } from '@docusaurus/preset-classic'; - -export const navbar: ThemeConfig['navbar'] = { - title: '', - logo: { - alt: 'Logo', - src: 'img/logo.svg', - srcDark: 'img/logo.svg', // Use same logo for dark mode - }, - items: [ - { - type: 'docSidebar', - sidebarId: 'autogenSidebar', - position: 'left', - label: 'Home', - }, - { - type: 'docSidebar', - sidebarId: 'bizSidebar', - position: 'left', - label: 'Business Info', - }, - // { - // to: '/blog', - // label: 'Blog', - // position: 'left', - // }, - // { - // type: 'docSidebar', - // sidebarId: 'tutorialSidebar', - // position: 'left', - // label: 'Tutorial', - // } - ], -}; diff --git a/buildchoice/coown_docusaurus.config.ts b/buildchoice/coown_docusaurus.config.ts deleted file mode 100644 index bb0847f..0000000 --- a/buildchoice/coown_docusaurus.config.ts +++ /dev/null @@ -1,75 +0,0 @@ -import {themes as prismThemes} from 'prism-react-renderer'; -import type {Config} from '@docusaurus/types'; -import type * as Preset from '@docusaurus/preset-classic'; -import { navbar } from './navigation/navbar'; -import { footer } from './navigation/footer'; -import type * as Redocusaurus from 'redocusaurus'; - -const config: Config = { - title: 'Veda', - tagline: 'Lets build Augmented Collective Intelligence.', - favicon: 'img/favicon.svg', - - url: 'https://info.ourworld.tf', - baseUrl: '/veda1234/', - - onBrokenLinks: 'warn', - onBrokenMarkdownLinks: 'warn', - - i18n: { - defaultLocale: 'en', - locales: ['en'], - }, - - presets: [ - [ - 'classic', - { - docs: { - sidebarPath: './navigation/sidebars.ts', - path: 'docs/', - routeBasePath: '/', - remarkPlugins: [], - rehypePlugins: [], - beforeDefaultRemarkPlugins: [], - beforeDefaultRehypePlugins: [], - }, - blog: { - showReadingTime: true, - editUrl: 'https://www.veda-egypt.com/', - postsPerPage: 8, - blogSidebarCount: 20, - }, - theme: { - customCss: './src/css/custom.css', - }, - } satisfies Preset.Options], - ], - markdown: { - mermaid: true, - }, - themes: ['@docusaurus/theme-mermaid'], - - themeConfig: { - docs: { - sidebar: { - hideable: false, - autoCollapseCategories: false, - } - }, - colorMode: { - defaultMode: 'dark', - disableSwitch: true, - respectPrefersColorScheme: true, - }, - image: 'img/favicon.svg', - navbar, - footer, - prism: { - theme: prismThemes.dracula, - darkTheme: prismThemes.dracula, - }, - } satisfies Preset.ThemeConfig, -}; - -export default config; diff --git a/buildchoice/coown_navbar.ts b/buildchoice/coown_navbar.ts deleted file mode 100644 index 7775ea5..0000000 --- a/buildchoice/coown_navbar.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { ThemeConfig } from '@docusaurus/preset-classic'; - -export const navbar: ThemeConfig['navbar'] = { - title: '', - logo: { - alt: 'Logo', - src: 'img/logo.svg', - srcDark: 'img/logo.svg', // Use same logo for dark mode - }, - items: [ - { - type: 'docSidebar', - sidebarId: 'autogenSidebar', - position: 'left', - label: 'Home', - }, - { - type: 'docSidebar', - sidebarId: 'ownerSidebar', - position: 'left', - label: 'Become a Shareholder', - }, - { - type: 'docSidebar', - sidebarId: 'appendixSidebar', - position: 'left', - label: 'More Info', - }, - // { - // to: '/blog', - // label: 'Blog', - // position: 'left', - // }, - // { - // type: 'docSidebar', - // sidebarId: 'tutorialSidebar', - // position: 'left', - // label: 'Tutorial', - // } - ], -}; diff --git a/community/build.sh b/community/build.sh new file mode 100755 index 0000000..c655a72 --- /dev/null +++ b/community/build.sh @@ -0,0 +1,6 @@ +#!/bin/bash -e + +script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +cd "${script_dir}" + +hero docusaurus -bp diff --git a/community/cfg/footer.json b/community/cfg/footer.json new file mode 100644 index 0000000..d42b8e5 --- /dev/null +++ b/community/cfg/footer.json @@ -0,0 +1,24 @@ +{ + "style": "dark", + "links": [ + { + "title": "Docs", + "items": [ + { + "label": "OurWorld", + "href": "https://www.ourworld.tf" + } + ] + }, + { + "title": "Links", + "items": [ + { + "label": "ThreeFold New Internet", + "href": "https://threefold.io" + } + ] + } + ], + "copyright": "Copyright © 2025 OurWorld" +} \ No newline at end of file diff --git a/community/cfg/main.json b/community/cfg/main.json new file mode 100644 index 0000000..a525d91 --- /dev/null +++ b/community/cfg/main.json @@ -0,0 +1,16 @@ +{ + "title": "Veda Nile Community", + "tagline": "Nile boats", + "favicon": "img/ourworld_favicon.png", + "url": "https://info.ourworld.tf", + "baseUrl": "/veda1234/", + "url_home": "docs", + "image": "img/ourworld_logo.png", + "metadata": { + "description": "Veda Nile Boats", + "image": "https://info.ourworld.tf/img/logo.svg", + "title": "OurWorld Veda" + }, + "buildDest":["root@info.ourworld.tf:/root/hero/www/info/veda1234"], + "buildDestDev":["root@info.ourworld.tf:/root/hero/www/info/veda1234"] +} \ No newline at end of file diff --git a/community/cfg/navbar.json b/community/cfg/navbar.json new file mode 100644 index 0000000..1022f45 --- /dev/null +++ b/community/cfg/navbar.json @@ -0,0 +1,14 @@ +{ + "title": "", + "logo": { + "alt": "Logo", + "src": "img/ourworld_logo.png" + }, + "items": [ + { + "href": "https://www.veda-egypt.com/", + "label": "Veda Egypt Website", + "position": "right" + } + ] +} \ No newline at end of file diff --git a/community/develop.sh b/community/develop.sh new file mode 100755 index 0000000..a448732 --- /dev/null +++ b/community/develop.sh @@ -0,0 +1,6 @@ +#!/bin/bash -e + +script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +cd "${script_dir}" + +hero docusaurus -d diff --git a/docs/appendix/_category_.json b/community/docs/appendix/_category_.json similarity index 85% rename from docs/appendix/_category_.json rename to community/docs/appendix/_category_.json index ae7bb9a..05ce6f4 100644 --- a/docs/appendix/_category_.json +++ b/community/docs/appendix/_category_.json @@ -1,6 +1,6 @@ { "label": "Appendix", - "position": 6, + "position": 90, "link": { "type": "generated-index", "description": "More info." diff --git a/docs/appendix/decentralization/_category_.json b/community/docs/appendix/decentralization/_category_.json similarity index 100% rename from docs/appendix/decentralization/_category_.json rename to community/docs/appendix/decentralization/_category_.json diff --git a/docs/appendix/decentralization/coop.md b/community/docs/appendix/decentralization/coop.md similarity index 100% rename from docs/appendix/decentralization/coop.md rename to community/docs/appendix/decentralization/coop.md diff --git a/docs/appendix/decentralization/dao.md b/community/docs/appendix/decentralization/dao.md similarity index 100% rename from docs/appendix/decentralization/dao.md rename to community/docs/appendix/decentralization/dao.md diff --git a/docs/appendix/decentralization/decentralization.md b/community/docs/appendix/decentralization/decentralization.md similarity index 96% rename from docs/appendix/decentralization/decentralization.md rename to community/docs/appendix/decentralization/decentralization.md index a6076c9..81029df 100644 --- a/docs/appendix/decentralization/decentralization.md +++ b/community/docs/appendix/decentralization/decentralization.md @@ -16,10 +16,10 @@ Decentralization, in our view, isn't solely about employing blockchain technolog For us decentralization is a very serious topic and is achieved in the following way: -- [Cooperative](coop.md) +- Cooperative - It manages the promotion of the Veda and related ecosystem - It safeguards the decentralization principles and the governance of the ecosystem. - It requires operational tasks in relation to anything that is of interest our members. -- [DAO](dao.md) +- DAO - A **Decentralized Autonomous Organization** is an organizational structure that operates through smart contracts on a blockchain, with decision-making processes carried out in a decentralized and autonomous manner. diff --git a/docs/appendix/decentralization/img/book.png b/community/docs/appendix/decentralization/img/book.png similarity index 100% rename from docs/appendix/decentralization/img/book.png rename to community/docs/appendix/decentralization/img/book.png diff --git a/docs/appendix/decentralization/img/coop.png b/community/docs/appendix/decentralization/img/coop.png similarity index 100% rename from docs/appendix/decentralization/img/coop.png rename to community/docs/appendix/decentralization/img/coop.png diff --git a/docs/appendix/decentralization/img/decentralized.png b/community/docs/appendix/decentralization/img/decentralized.png similarity index 100% rename from docs/appendix/decentralization/img/decentralized.png rename to community/docs/appendix/decentralization/img/decentralized.png diff --git a/docs/appendix/decentralization/img/deeping.png b/community/docs/appendix/decentralization/img/deeping.png similarity index 100% rename from docs/appendix/decentralization/img/deeping.png rename to community/docs/appendix/decentralization/img/deeping.png diff --git a/docs/appendix/decentralization/img/farming.png b/community/docs/appendix/decentralization/img/farming.png similarity index 100% rename from docs/appendix/decentralization/img/farming.png rename to community/docs/appendix/decentralization/img/farming.png diff --git a/docs/appendix/decentralization/img/validator.png b/community/docs/appendix/decentralization/img/validator.png similarity index 100% rename from docs/appendix/decentralization/img/validator.png rename to community/docs/appendix/decentralization/img/validator.png diff --git a/docs/appendix/decentralization/img/wisdom.png b/community/docs/appendix/decentralization/img/wisdom.png similarity index 100% rename from docs/appendix/decentralization/img/wisdom.png rename to community/docs/appendix/decentralization/img/wisdom.png diff --git a/docs/appendix/hiring/_category_.json b/community/docs/appendix/hiring/_category_.json similarity index 100% rename from docs/appendix/hiring/_category_.json rename to community/docs/appendix/hiring/_category_.json diff --git a/docs/appendix/hiring/cooperation.md b/community/docs/appendix/hiring/cooperation.md similarity index 100% rename from docs/appendix/hiring/cooperation.md rename to community/docs/appendix/hiring/cooperation.md diff --git a/docs/appendix/hiring/img/loe.png b/community/docs/appendix/hiring/img/loe.png similarity index 100% rename from docs/appendix/hiring/img/loe.png rename to community/docs/appendix/hiring/img/loe.png diff --git a/docs/appendix/hiring/intro.md b/community/docs/appendix/hiring/intro.md similarity index 100% rename from docs/appendix/hiring/intro.md rename to community/docs/appendix/hiring/intro.md diff --git a/docs/appendix/img/cloud.jpg b/community/docs/appendix/img/cloud.jpg similarity index 100% rename from docs/appendix/img/cloud.jpg rename to community/docs/appendix/img/cloud.jpg diff --git a/docs/biz/_category_.json b/community/docs/biz/_category_.json similarity index 86% rename from docs/biz/_category_.json rename to community/docs/biz/_category_.json index 0593c28..5211db6 100644 --- a/docs/biz/_category_.json +++ b/community/docs/biz/_category_.json @@ -1,6 +1,6 @@ { "label": "Business", - "position": 11, + "position": 61, "link": { "type": "generated-index", "description": "To be further prepared." diff --git a/docs/biz/biz.md b/community/docs/biz/biz.md similarity index 98% rename from docs/biz/biz.md rename to community/docs/biz/biz.md index a9977a4..104f63d 100644 --- a/docs/biz/biz.md +++ b/community/docs/biz/biz.md @@ -5,7 +5,7 @@ hide_title: true description: 'Investment Opportunity: Luxury Nile Cruise Operations' --- -![](../main/img/boats_land3.png) +![](../img/boats_land3.png) ## Current Operations Overview diff --git a/docs/biz/unique.md b/community/docs/biz/unique.md similarity index 97% rename from docs/biz/unique.md rename to community/docs/biz/unique.md index 16f1a2d..36e34a9 100644 --- a/docs/biz/unique.md +++ b/community/docs/biz/unique.md @@ -5,7 +5,7 @@ hide_title: true description: 'The boats are special' --- -![](../main/img/3_boats_sky.png) +![](../img/3_boats_sky.png) # Unique Competitive Advantages diff --git a/docs/main/boats/_category_.json b/community/docs/boats/_category_.json similarity index 100% rename from docs/main/boats/_category_.json rename to community/docs/boats/_category_.json diff --git a/docs/main/boats/facilities.md b/community/docs/boats/facilities.md similarity index 100% rename from docs/main/boats/facilities.md rename to community/docs/boats/facilities.md diff --git a/docs/main/boats/overview.md b/community/docs/boats/overview.md similarity index 100% rename from docs/main/boats/overview.md rename to community/docs/boats/overview.md diff --git a/docs/main/boats/tech_data.md b/community/docs/boats/tech_data.md similarity index 100% rename from docs/main/boats/tech_data.md rename to community/docs/boats/tech_data.md diff --git a/docs/main/boats/veda1/_category_.json b/community/docs/boats/veda1/_category_.json similarity index 100% rename from docs/main/boats/veda1/_category_.json rename to community/docs/boats/veda1/_category_.json diff --git a/docs/main/boats/veda1/gallery.md b/community/docs/boats/veda1/gallery.md similarity index 100% rename from docs/main/boats/veda1/gallery.md rename to community/docs/boats/veda1/gallery.md diff --git a/docs/main/boats/veda1/img/veda1_3x.png b/community/docs/boats/veda1/img/veda1_3x.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_3x.png rename to community/docs/boats/veda1/img/veda1_3x.png diff --git a/docs/main/boats/veda1/img/veda1_3xb.png b/community/docs/boats/veda1/img/veda1_3xb.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_3xb.png rename to community/docs/boats/veda1/img/veda1_3xb.png diff --git a/docs/main/boats/veda1/img/veda1_coridor.png b/community/docs/boats/veda1/img/veda1_coridor.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_coridor.png rename to community/docs/boats/veda1/img/veda1_coridor.png diff --git a/docs/main/boats/veda1/img/veda1_deck1.png b/community/docs/boats/veda1/img/veda1_deck1.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_deck1.png rename to community/docs/boats/veda1/img/veda1_deck1.png diff --git a/docs/main/boats/veda1/img/veda1_deck2.png b/community/docs/boats/veda1/img/veda1_deck2.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_deck2.png rename to community/docs/boats/veda1/img/veda1_deck2.png diff --git a/docs/main/boats/veda1/img/veda1_deck3.png b/community/docs/boats/veda1/img/veda1_deck3.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_deck3.png rename to community/docs/boats/veda1/img/veda1_deck3.png diff --git a/docs/main/boats/veda1/img/veda1_inerior1.png b/community/docs/boats/veda1/img/veda1_inerior1.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_inerior1.png rename to community/docs/boats/veda1/img/veda1_inerior1.png diff --git a/docs/main/boats/veda1/img/veda1_inerior2.png b/community/docs/boats/veda1/img/veda1_inerior2.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_inerior2.png rename to community/docs/boats/veda1/img/veda1_inerior2.png diff --git a/docs/main/boats/veda1/img/veda1_interior2.png b/community/docs/boats/veda1/img/veda1_interior2.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_interior2.png rename to community/docs/boats/veda1/img/veda1_interior2.png diff --git a/docs/main/boats/veda1/img/veda1_meetingroom.png b/community/docs/boats/veda1/img/veda1_meetingroom.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_meetingroom.png rename to community/docs/boats/veda1/img/veda1_meetingroom.png diff --git a/docs/main/boats/veda1/img/veda1_meetingroom2.png b/community/docs/boats/veda1/img/veda1_meetingroom2.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_meetingroom2.png rename to community/docs/boats/veda1/img/veda1_meetingroom2.png diff --git a/docs/main/boats/veda1/img/veda1_plan copy.png b/community/docs/boats/veda1/img/veda1_plan copy.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_plan copy.png rename to community/docs/boats/veda1/img/veda1_plan copy.png diff --git a/docs/main/boats/veda1/img/veda1_plan.png b/community/docs/boats/veda1/img/veda1_plan.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_plan.png rename to community/docs/boats/veda1/img/veda1_plan.png diff --git a/docs/main/boats/veda1/img/veda1_room.png b/community/docs/boats/veda1/img/veda1_room.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_room.png rename to community/docs/boats/veda1/img/veda1_room.png diff --git a/docs/main/boats/veda1/img/veda1_suiteview.png b/community/docs/boats/veda1/img/veda1_suiteview.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_suiteview.png rename to community/docs/boats/veda1/img/veda1_suiteview.png diff --git a/docs/main/boats/veda1/img/veda1_veda3.png b/community/docs/boats/veda1/img/veda1_veda3.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_veda3.png rename to community/docs/boats/veda1/img/veda1_veda3.png diff --git a/docs/main/boats/veda1/img/veda1_water.png b/community/docs/boats/veda1/img/veda1_water.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_water.png rename to community/docs/boats/veda1/img/veda1_water.png diff --git a/docs/main/boats/veda1/img/veda1_yoga.png b/community/docs/boats/veda1/img/veda1_yoga.png similarity index 100% rename from docs/main/boats/veda1/img/veda1_yoga.png rename to community/docs/boats/veda1/img/veda1_yoga.png diff --git a/docs/main/boats/veda1/layout.md b/community/docs/boats/veda1/layout.md similarity index 100% rename from docs/main/boats/veda1/layout.md rename to community/docs/boats/veda1/layout.md diff --git a/docs/main/boats/veda2/_category_.json b/community/docs/boats/veda2/_category_.json similarity index 100% rename from docs/main/boats/veda2/_category_.json rename to community/docs/boats/veda2/_category_.json diff --git a/docs/main/boats/veda2/gallery.md b/community/docs/boats/veda2/gallery.md similarity index 100% rename from docs/main/boats/veda2/gallery.md rename to community/docs/boats/veda2/gallery.md diff --git a/docs/main/boats/veda2/img/veda2.png b/community/docs/boats/veda2/img/veda2.png similarity index 100% rename from docs/main/boats/veda2/img/veda2.png rename to community/docs/boats/veda2/img/veda2.png diff --git a/docs/main/boats/veda2/img/veda2_deck2.png b/community/docs/boats/veda2/img/veda2_deck2.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_deck2.png rename to community/docs/boats/veda2/img/veda2_deck2.png diff --git a/docs/main/boats/veda2/img/veda2_inside.png b/community/docs/boats/veda2/img/veda2_inside.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_inside.png rename to community/docs/boats/veda2/img/veda2_inside.png diff --git a/docs/main/boats/veda2/img/veda2_inside2.png b/community/docs/boats/veda2/img/veda2_inside2.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_inside2.png rename to community/docs/boats/veda2/img/veda2_inside2.png diff --git a/docs/main/boats/veda2/img/veda2_intro.png b/community/docs/boats/veda2/img/veda2_intro.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_intro.png rename to community/docs/boats/veda2/img/veda2_intro.png diff --git a/docs/main/boats/veda2/img/veda2_nile.png b/community/docs/boats/veda2/img/veda2_nile.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_nile.png rename to community/docs/boats/veda2/img/veda2_nile.png diff --git a/docs/main/boats/veda2/img/veda2_people.png b/community/docs/boats/veda2/img/veda2_people.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_people.png rename to community/docs/boats/veda2/img/veda2_people.png diff --git a/docs/main/boats/veda2/img/veda2_plan.png b/community/docs/boats/veda2/img/veda2_plan.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_plan.png rename to community/docs/boats/veda2/img/veda2_plan.png diff --git a/docs/main/boats/veda2/img/veda2_staff.png b/community/docs/boats/veda2/img/veda2_staff.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_staff.png rename to community/docs/boats/veda2/img/veda2_staff.png diff --git a/docs/main/boats/veda2/img/veda2_upper.png b/community/docs/boats/veda2/img/veda2_upper.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_upper.png rename to community/docs/boats/veda2/img/veda2_upper.png diff --git a/docs/main/boats/veda2/img/veda2_view.png b/community/docs/boats/veda2/img/veda2_view.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_view.png rename to community/docs/boats/veda2/img/veda2_view.png diff --git a/docs/main/boats/veda2/img/veda2_yoga.png b/community/docs/boats/veda2/img/veda2_yoga.png similarity index 100% rename from docs/main/boats/veda2/img/veda2_yoga.png rename to community/docs/boats/veda2/img/veda2_yoga.png diff --git a/docs/main/boats/veda2/layout.md b/community/docs/boats/veda2/layout.md similarity index 100% rename from docs/main/boats/veda2/layout.md rename to community/docs/boats/veda2/layout.md diff --git a/docs/main/boats/veda3/_category_.json b/community/docs/boats/veda3/_category_.json similarity index 100% rename from docs/main/boats/veda3/_category_.json rename to community/docs/boats/veda3/_category_.json diff --git a/docs/main/boats/veda3/gallery.md b/community/docs/boats/veda3/gallery.md similarity index 100% rename from docs/main/boats/veda3/gallery.md rename to community/docs/boats/veda3/gallery.md diff --git a/docs/main/boats/veda3/img/veda3.png b/community/docs/boats/veda3/img/veda3.png similarity index 100% rename from docs/main/boats/veda3/img/veda3.png rename to community/docs/boats/veda3/img/veda3.png diff --git a/docs/main/boats/veda3/img/veda3_boats.png b/community/docs/boats/veda3/img/veda3_boats.png similarity index 100% rename from docs/main/boats/veda3/img/veda3_boats.png rename to community/docs/boats/veda3/img/veda3_boats.png diff --git a/docs/main/boats/veda3/img/veda3_boats_2.png b/community/docs/boats/veda3/img/veda3_boats_2.png similarity index 100% rename from docs/main/boats/veda3/img/veda3_boats_2.png rename to community/docs/boats/veda3/img/veda3_boats_2.png diff --git a/docs/main/boats/veda3/img/veda3_boats_3.png b/community/docs/boats/veda3/img/veda3_boats_3.png similarity index 100% rename from docs/main/boats/veda3/img/veda3_boats_3.png rename to community/docs/boats/veda3/img/veda3_boats_3.png diff --git a/docs/main/boats/veda3/img/veda3_boats_sky.png b/community/docs/boats/veda3/img/veda3_boats_sky.png similarity index 100% rename from docs/main/boats/veda3/img/veda3_boats_sky.png rename to community/docs/boats/veda3/img/veda3_boats_sky.png diff --git a/docs/main/boats/veda3/img/veda3_deck.png b/community/docs/boats/veda3/img/veda3_deck.png similarity index 100% rename from docs/main/boats/veda3/img/veda3_deck.png rename to community/docs/boats/veda3/img/veda3_deck.png diff --git a/docs/main/boats/veda3/img/veda3_plan.png b/community/docs/boats/veda3/img/veda3_plan.png similarity index 100% rename from docs/main/boats/veda3/img/veda3_plan.png rename to community/docs/boats/veda3/img/veda3_plan.png diff --git a/docs/main/boats/veda3/layout.md b/community/docs/boats/veda3/layout.md similarity index 100% rename from docs/main/boats/veda3/layout.md rename to community/docs/boats/veda3/layout.md diff --git a/docs/main/boats/veda4/_category_.json b/community/docs/boats/veda4/_category_.json similarity index 100% rename from docs/main/boats/veda4/_category_.json rename to community/docs/boats/veda4/_category_.json diff --git a/docs/main/boats/veda4/gallery.md b/community/docs/boats/veda4/gallery.md similarity index 100% rename from docs/main/boats/veda4/gallery.md rename to community/docs/boats/veda4/gallery.md diff --git a/docs/main/boats/veda4/img/veda4_artist.png b/community/docs/boats/veda4/img/veda4_artist.png similarity index 100% rename from docs/main/boats/veda4/img/veda4_artist.png rename to community/docs/boats/veda4/img/veda4_artist.png diff --git a/docs/main/boats/veda4/img/veda4_deck.png b/community/docs/boats/veda4/img/veda4_deck.png similarity index 100% rename from docs/main/boats/veda4/img/veda4_deck.png rename to community/docs/boats/veda4/img/veda4_deck.png diff --git a/docs/main/boats/veda4/img/veda4_plan.png b/community/docs/boats/veda4/img/veda4_plan.png similarity index 100% rename from docs/main/boats/veda4/img/veda4_plan.png rename to community/docs/boats/veda4/img/veda4_plan.png diff --git a/docs/main/boats/veda4/img/veda4_resto.png b/community/docs/boats/veda4/img/veda4_resto.png similarity index 100% rename from docs/main/boats/veda4/img/veda4_resto.png rename to community/docs/boats/veda4/img/veda4_resto.png diff --git a/docs/main/boats/veda4/img/veda4_room.png b/community/docs/boats/veda4/img/veda4_room.png similarity index 100% rename from docs/main/boats/veda4/img/veda4_room.png rename to community/docs/boats/veda4/img/veda4_room.png diff --git a/docs/main/boats/veda4/img/veda4_upper.png b/community/docs/boats/veda4/img/veda4_upper.png similarity index 100% rename from docs/main/boats/veda4/img/veda4_upper.png rename to community/docs/boats/veda4/img/veda4_upper.png diff --git a/docs/main/boats/veda4/layout.md b/community/docs/boats/veda4/layout.md similarity index 100% rename from docs/main/boats/veda4/layout.md rename to community/docs/boats/veda4/layout.md diff --git a/docs/main/cnn.mdx b/community/docs/cnn.mdx similarity index 100% rename from docs/main/cnn.mdx rename to community/docs/cnn.mdx diff --git a/docs/main/community_trip.mdx b/community/docs/community_trip.mdx similarity index 100% rename from docs/main/community_trip.mdx rename to community/docs/community_trip.mdx diff --git a/docs/main/flying_nile.mdx b/community/docs/flying_nile.mdx similarity index 100% rename from docs/main/flying_nile.mdx rename to community/docs/flying_nile.mdx diff --git a/docs/main/img/3_boats.png b/community/docs/img/3_boats.png similarity index 100% rename from docs/main/img/3_boats.png rename to community/docs/img/3_boats.png diff --git a/docs/main/img/3_boats_2.png b/community/docs/img/3_boats_2.png similarity index 100% rename from docs/main/img/3_boats_2.png rename to community/docs/img/3_boats_2.png diff --git a/docs/main/img/3_boats_3.png b/community/docs/img/3_boats_3.png similarity index 100% rename from docs/main/img/3_boats_3.png rename to community/docs/img/3_boats_3.png diff --git a/docs/main/img/3_boats_sky.png b/community/docs/img/3_boats_sky.png similarity index 100% rename from docs/main/img/3_boats_sky.png rename to community/docs/img/3_boats_sky.png diff --git a/docs/main/img/boat_large_nile.png b/community/docs/img/boat_large_nile.png similarity index 100% rename from docs/main/img/boat_large_nile.png rename to community/docs/img/boat_large_nile.png diff --git a/docs/main/img/boats_land.png b/community/docs/img/boats_land.png similarity index 100% rename from docs/main/img/boats_land.png rename to community/docs/img/boats_land.png diff --git a/docs/main/img/boats_land2.png b/community/docs/img/boats_land2.png similarity index 100% rename from docs/main/img/boats_land2.png rename to community/docs/img/boats_land2.png diff --git a/docs/main/img/boats_land3.png b/community/docs/img/boats_land3.png similarity index 100% rename from docs/main/img/boats_land3.png rename to community/docs/img/boats_land3.png diff --git a/docs/main/img/boats_land4.png b/community/docs/img/boats_land4.png similarity index 100% rename from docs/main/img/boats_land4.png rename to community/docs/img/boats_land4.png diff --git a/docs/main/img/finish.png b/community/docs/img/finish.png similarity index 100% rename from docs/main/img/finish.png rename to community/docs/img/finish.png diff --git a/docs/main/img/intro.png b/community/docs/img/intro.png similarity index 100% rename from docs/main/img/intro.png rename to community/docs/img/intro.png diff --git a/docs/main/img/nile_atmo.png b/community/docs/img/nile_atmo.png similarity index 100% rename from docs/main/img/nile_atmo.png rename to community/docs/img/nile_atmo.png diff --git a/docs/main/img/nile_chris.png b/community/docs/img/nile_chris.png similarity index 100% rename from docs/main/img/nile_chris.png rename to community/docs/img/nile_chris.png diff --git a/docs/main/img/nile_cow.png b/community/docs/img/nile_cow.png similarity index 100% rename from docs/main/img/nile_cow.png rename to community/docs/img/nile_cow.png diff --git a/docs/main/img/nile_cow2.png b/community/docs/img/nile_cow2.png similarity index 100% rename from docs/main/img/nile_cow2.png rename to community/docs/img/nile_cow2.png diff --git a/docs/main/img/nile_garden.png b/community/docs/img/nile_garden.png similarity index 100% rename from docs/main/img/nile_garden.png rename to community/docs/img/nile_garden.png diff --git a/docs/main/img/nile_isa.png b/community/docs/img/nile_isa.png similarity index 100% rename from docs/main/img/nile_isa.png rename to community/docs/img/nile_isa.png diff --git a/docs/main/img/nile_jump.png b/community/docs/img/nile_jump.png similarity index 100% rename from docs/main/img/nile_jump.png rename to community/docs/img/nile_jump.png diff --git a/docs/main/img/nile_q.png b/community/docs/img/nile_q.png similarity index 100% rename from docs/main/img/nile_q.png rename to community/docs/img/nile_q.png diff --git a/docs/main/img/nile_temple.png b/community/docs/img/nile_temple.png similarity index 100% rename from docs/main/img/nile_temple.png rename to community/docs/img/nile_temple.png diff --git a/docs/main/img/nile_temple2.png b/community/docs/img/nile_temple2.png similarity index 100% rename from docs/main/img/nile_temple2.png rename to community/docs/img/nile_temple2.png diff --git a/docs/main/img/nile_temple3.png b/community/docs/img/nile_temple3.png similarity index 100% rename from docs/main/img/nile_temple3.png rename to community/docs/img/nile_temple3.png diff --git a/docs/main/img/nile_temple4.png b/community/docs/img/nile_temple4.png similarity index 100% rename from docs/main/img/nile_temple4.png rename to community/docs/img/nile_temple4.png diff --git a/docs/main/img/nile_temple5.png b/community/docs/img/nile_temple5.png similarity index 100% rename from docs/main/img/nile_temple5.png rename to community/docs/img/nile_temple5.png diff --git a/docs/main/img/nile_temple6.png b/community/docs/img/nile_temple6.png similarity index 100% rename from docs/main/img/nile_temple6.png rename to community/docs/img/nile_temple6.png diff --git a/docs/main/img/nile_transfer.png b/community/docs/img/nile_transfer.png similarity index 100% rename from docs/main/img/nile_transfer.png rename to community/docs/img/nile_transfer.png diff --git a/docs/main/img/nile_transfer2.png b/community/docs/img/nile_transfer2.png similarity index 100% rename from docs/main/img/nile_transfer2.png rename to community/docs/img/nile_transfer2.png diff --git a/docs/main/img/temples1.png b/community/docs/img/temples1.png similarity index 100% rename from docs/main/img/temples1.png rename to community/docs/img/temples1.png diff --git a/docs/main/img/veda1_3x.png b/community/docs/img/veda1_3x.png similarity index 100% rename from docs/main/img/veda1_3x.png rename to community/docs/img/veda1_3x.png diff --git a/docs/main/img/veda1_3xb.png b/community/docs/img/veda1_3xb.png similarity index 100% rename from docs/main/img/veda1_3xb.png rename to community/docs/img/veda1_3xb.png diff --git a/docs/main/img/veda1_coridor.png b/community/docs/img/veda1_coridor.png similarity index 100% rename from docs/main/img/veda1_coridor.png rename to community/docs/img/veda1_coridor.png diff --git a/docs/main/img/veda1_deck1.png b/community/docs/img/veda1_deck1.png similarity index 100% rename from docs/main/img/veda1_deck1.png rename to community/docs/img/veda1_deck1.png diff --git a/docs/main/img/veda1_deck2.png b/community/docs/img/veda1_deck2.png similarity index 100% rename from docs/main/img/veda1_deck2.png rename to community/docs/img/veda1_deck2.png diff --git a/docs/main/img/veda1_deck3.png b/community/docs/img/veda1_deck3.png similarity index 100% rename from docs/main/img/veda1_deck3.png rename to community/docs/img/veda1_deck3.png diff --git a/docs/main/img/veda1_inerior1.png b/community/docs/img/veda1_inerior1.png similarity index 100% rename from docs/main/img/veda1_inerior1.png rename to community/docs/img/veda1_inerior1.png diff --git a/docs/main/img/veda1_inerior2.png b/community/docs/img/veda1_inerior2.png similarity index 100% rename from docs/main/img/veda1_inerior2.png rename to community/docs/img/veda1_inerior2.png diff --git a/docs/main/img/veda1_interior2.png b/community/docs/img/veda1_interior2.png similarity index 100% rename from docs/main/img/veda1_interior2.png rename to community/docs/img/veda1_interior2.png diff --git a/docs/main/img/veda1_meetingroom.png b/community/docs/img/veda1_meetingroom.png similarity index 100% rename from docs/main/img/veda1_meetingroom.png rename to community/docs/img/veda1_meetingroom.png diff --git a/docs/main/img/veda1_meetingroom2.png b/community/docs/img/veda1_meetingroom2.png similarity index 100% rename from docs/main/img/veda1_meetingroom2.png rename to community/docs/img/veda1_meetingroom2.png diff --git a/docs/main/img/veda1_plan.png b/community/docs/img/veda1_plan.png similarity index 100% rename from docs/main/img/veda1_plan.png rename to community/docs/img/veda1_plan.png diff --git a/docs/main/img/veda1_room.png b/community/docs/img/veda1_room.png similarity index 100% rename from docs/main/img/veda1_room.png rename to community/docs/img/veda1_room.png diff --git a/docs/main/img/veda1_suiteview.png b/community/docs/img/veda1_suiteview.png similarity index 100% rename from docs/main/img/veda1_suiteview.png rename to community/docs/img/veda1_suiteview.png diff --git a/docs/main/img/veda1_veda3.png b/community/docs/img/veda1_veda3.png similarity index 100% rename from docs/main/img/veda1_veda3.png rename to community/docs/img/veda1_veda3.png diff --git a/docs/main/img/veda1_water.png b/community/docs/img/veda1_water.png similarity index 100% rename from docs/main/img/veda1_water.png rename to community/docs/img/veda1_water.png diff --git a/docs/main/img/veda1_yoga.png b/community/docs/img/veda1_yoga.png similarity index 100% rename from docs/main/img/veda1_yoga.png rename to community/docs/img/veda1_yoga.png diff --git a/docs/main/img/veda2.png b/community/docs/img/veda2.png similarity index 100% rename from docs/main/img/veda2.png rename to community/docs/img/veda2.png diff --git a/docs/main/img/veda2_deck2.png b/community/docs/img/veda2_deck2.png similarity index 100% rename from docs/main/img/veda2_deck2.png rename to community/docs/img/veda2_deck2.png diff --git a/docs/main/img/veda2_inside.png b/community/docs/img/veda2_inside.png similarity index 100% rename from docs/main/img/veda2_inside.png rename to community/docs/img/veda2_inside.png diff --git a/docs/main/img/veda2_inside2.png b/community/docs/img/veda2_inside2.png similarity index 100% rename from docs/main/img/veda2_inside2.png rename to community/docs/img/veda2_inside2.png diff --git a/docs/main/img/veda2_intro.png b/community/docs/img/veda2_intro.png similarity index 100% rename from docs/main/img/veda2_intro.png rename to community/docs/img/veda2_intro.png diff --git a/docs/main/img/veda2_nile.png b/community/docs/img/veda2_nile.png similarity index 100% rename from docs/main/img/veda2_nile.png rename to community/docs/img/veda2_nile.png diff --git a/docs/main/img/veda2_plan.png b/community/docs/img/veda2_plan.png similarity index 100% rename from docs/main/img/veda2_plan.png rename to community/docs/img/veda2_plan.png diff --git a/docs/main/img/veda2_staff.png b/community/docs/img/veda2_staff.png similarity index 100% rename from docs/main/img/veda2_staff.png rename to community/docs/img/veda2_staff.png diff --git a/docs/main/img/veda2_upper.png b/community/docs/img/veda2_upper.png similarity index 100% rename from docs/main/img/veda2_upper.png rename to community/docs/img/veda2_upper.png diff --git a/docs/main/img/veda2_view.png b/community/docs/img/veda2_view.png similarity index 100% rename from docs/main/img/veda2_view.png rename to community/docs/img/veda2_view.png diff --git a/docs/main/img/veda2_yoga.png b/community/docs/img/veda2_yoga.png similarity index 100% rename from docs/main/img/veda2_yoga.png rename to community/docs/img/veda2_yoga.png diff --git a/docs/main/img/veda3.png b/community/docs/img/veda3.png similarity index 100% rename from docs/main/img/veda3.png rename to community/docs/img/veda3.png diff --git a/docs/main/img/veda3_deck.png b/community/docs/img/veda3_deck.png similarity index 100% rename from docs/main/img/veda3_deck.png rename to community/docs/img/veda3_deck.png diff --git a/docs/main/img/veda3_plan.png b/community/docs/img/veda3_plan.png similarity index 100% rename from docs/main/img/veda3_plan.png rename to community/docs/img/veda3_plan.png diff --git a/docs/main/img/veda4_artist.png b/community/docs/img/veda4_artist.png similarity index 100% rename from docs/main/img/veda4_artist.png rename to community/docs/img/veda4_artist.png diff --git a/docs/main/img/veda4_deck.png b/community/docs/img/veda4_deck.png similarity index 100% rename from docs/main/img/veda4_deck.png rename to community/docs/img/veda4_deck.png diff --git a/docs/main/img/veda4_plan.png b/community/docs/img/veda4_plan.png similarity index 100% rename from docs/main/img/veda4_plan.png rename to community/docs/img/veda4_plan.png diff --git a/docs/main/img/veda4_resto.png b/community/docs/img/veda4_resto.png similarity index 100% rename from docs/main/img/veda4_resto.png rename to community/docs/img/veda4_resto.png diff --git a/docs/main/img/veda4_room.png b/community/docs/img/veda4_room.png similarity index 100% rename from docs/main/img/veda4_room.png rename to community/docs/img/veda4_room.png diff --git a/docs/main/img/veda4_upper.png b/community/docs/img/veda4_upper.png similarity index 100% rename from docs/main/img/veda4_upper.png rename to community/docs/img/veda4_upper.png diff --git a/docs/main/img/veda_fater.png b/community/docs/img/veda_fater.png similarity index 100% rename from docs/main/img/veda_fater.png rename to community/docs/img/veda_fater.png diff --git a/docs/main/img/veda_jump.png b/community/docs/img/veda_jump.png similarity index 100% rename from docs/main/img/veda_jump.png rename to community/docs/img/veda_jump.png diff --git a/docs/main/img/veda_mother.png b/community/docs/img/veda_mother.png similarity index 100% rename from docs/main/img/veda_mother.png rename to community/docs/img/veda_mother.png diff --git a/docs/main/img/vesa2_people.png b/community/docs/img/vesa2_people.png similarity index 100% rename from docs/main/img/vesa2_people.png rename to community/docs/img/vesa2_people.png diff --git a/docs/main/intro.md b/community/docs/intro.md similarity index 90% rename from docs/main/intro.md rename to community/docs/intro.md index fad5b5a..52f47a9 100644 --- a/docs/main/intro.md +++ b/community/docs/intro.md @@ -1,5 +1,5 @@ --- -title: 'Home' +title: 'Intro' sidebar_position: 1 slug: / #hide_table_of_contents: true @@ -8,7 +8,7 @@ hide_title: true ![](img/3_boats_2.png) -## A new future for our 4 Nile Boats. +## Veda Nile Boats. We are the proud owners of four beautiful boats on the Nile, and over the years, they have been more than just vessels; they’ve been a gateway to cherished memories, adventures, and meaningful connections. diff --git a/docs/owner/_category_.json b/community/docs/owner/_category_.json similarity index 100% rename from docs/owner/_category_.json rename to community/docs/owner/_category_.json diff --git a/docs/owner/register.mdx b/community/docs/owner/register.mdx similarity index 100% rename from docs/owner/register.mdx rename to community/docs/owner/register.mdx diff --git a/docs/owner/shareholder.md b/community/docs/owner/shareholder.md similarity index 97% rename from docs/owner/shareholder.md rename to community/docs/owner/shareholder.md index f7e2aee..3855be4 100644 --- a/docs/owner/shareholder.md +++ b/community/docs/owner/shareholder.md @@ -4,7 +4,7 @@ sidebar_position: 1 hide_title: true --- -![](../main/img/temples1.png) +![](../img/temples1.png) # Join the Veda Nile Cooperative diff --git a/docs/main/presentation.mdx b/community/docs/presentation.mdx similarity index 100% rename from docs/main/presentation.mdx rename to community/docs/presentation.mdx diff --git a/src/components/Highlight.tsx b/community/src/components/Highlight.tsx similarity index 100% rename from src/components/Highlight.tsx rename to community/src/components/Highlight.tsx diff --git a/src/components/Typeform.tsx b/community/src/components/Typeform.tsx similarity index 100% rename from src/components/Typeform.tsx rename to community/src/components/Typeform.tsx diff --git a/static/img/favicon.svg b/community/static/img/favicon.svg similarity index 100% rename from static/img/favicon.svg rename to community/static/img/favicon.svg diff --git a/community/static/img/geomind.png b/community/static/img/geomind.png new file mode 100644 index 0000000..fdab936 Binary files /dev/null and b/community/static/img/geomind.png differ diff --git a/static/img/logo.svg b/community/static/img/logo.svg similarity index 100% rename from static/img/logo.svg rename to community/static/img/logo.svg diff --git a/community/static/img/ourworld_favicon.png b/community/static/img/ourworld_favicon.png new file mode 100644 index 0000000..249f4b9 Binary files /dev/null and b/community/static/img/ourworld_favicon.png differ diff --git a/community/static/img/ourworld_logo.png b/community/static/img/ourworld_logo.png new file mode 100644 index 0000000..a816907 Binary files /dev/null and b/community/static/img/ourworld_logo.png differ diff --git a/default/build.sh b/default/build.sh new file mode 100755 index 0000000..c655a72 --- /dev/null +++ b/default/build.sh @@ -0,0 +1,6 @@ +#!/bin/bash -e + +script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +cd "${script_dir}" + +hero docusaurus -bp diff --git a/default/cfg/footer.json b/default/cfg/footer.json new file mode 100644 index 0000000..d42b8e5 --- /dev/null +++ b/default/cfg/footer.json @@ -0,0 +1,24 @@ +{ + "style": "dark", + "links": [ + { + "title": "Docs", + "items": [ + { + "label": "OurWorld", + "href": "https://www.ourworld.tf" + } + ] + }, + { + "title": "Links", + "items": [ + { + "label": "ThreeFold New Internet", + "href": "https://threefold.io" + } + ] + } + ], + "copyright": "Copyright © 2025 OurWorld" +} \ No newline at end of file diff --git a/default/cfg/main.json b/default/cfg/main.json new file mode 100644 index 0000000..2243d78 --- /dev/null +++ b/default/cfg/main.json @@ -0,0 +1,16 @@ +{ + "title": "Veda Nile", + "tagline": "Nile boats", + "favicon": "img/ourworld_favicon.png", + "url": "https://info.ourworld.tf", + "baseUrl": "/veda/", + "url_home": "docs", + "image": "img/ourworld_logo.png", + "metadata": { + "description": "Veda Nile Boats", + "image": "https://info.ourworld.tf/img/logo.svg", + "title": "OurWorld Veda" + }, + "buildDest":["root@info.ourworld.tf:/root/hero/www/info/veda"], + "buildDestDev":["root@info.ourworld.tf:/root/hero/www/info/veda"] +} \ No newline at end of file diff --git a/default/cfg/navbar.json b/default/cfg/navbar.json new file mode 100644 index 0000000..1022f45 --- /dev/null +++ b/default/cfg/navbar.json @@ -0,0 +1,14 @@ +{ + "title": "", + "logo": { + "alt": "Logo", + "src": "img/ourworld_logo.png" + }, + "items": [ + { + "href": "https://www.veda-egypt.com/", + "label": "Veda Egypt Website", + "position": "right" + } + ] +} \ No newline at end of file diff --git a/default/develop.sh b/default/develop.sh new file mode 100755 index 0000000..a448732 --- /dev/null +++ b/default/develop.sh @@ -0,0 +1,6 @@ +#!/bin/bash -e + +script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +cd "${script_dir}" + +hero docusaurus -d diff --git a/default/docs/biz/_category_.json b/default/docs/biz/_category_.json new file mode 100644 index 0000000..5211db6 --- /dev/null +++ b/default/docs/biz/_category_.json @@ -0,0 +1,8 @@ +{ + "label": "Business", + "position": 61, + "link": { + "type": "generated-index", + "description": "To be further prepared." + } +} diff --git a/default/docs/biz/biz.md b/default/docs/biz/biz.md new file mode 100644 index 0000000..104f63d --- /dev/null +++ b/default/docs/biz/biz.md @@ -0,0 +1,60 @@ +--- +title: 'Investment Opportunity' +sidebar_position: 1 +hide_title: true +description: 'Investment Opportunity: Luxury Nile Cruise Operations' +--- + +![](../img/boats_land3.png) + +## Current Operations Overview + +Our fleet of luxury Nile cruisers has been operating with minimal commercial focus, primarily serving our community events. + +Despite limited commercialization, the operation generates €200,000-300,000 in annual net profit, demonstrating strong potential for significant growth. + +## Asset Portfolio + +### Existing Assets + +- Fully operational Egyptian company with experienced management +- Professional team of +25 full-time staff +- Premium fleet: + - Two luxury vessels (Mother & Father Veda) - 24 premium rooms + - One traditional sailing vessel - 10 rooms + - One boutique family boat - 5 rooms + - Support vessels including speedboat +- All necessary licenses and permits +- Established operational infrastructure + +### Expansion Opportunities + +- Three additional boutique vessels (4 rooms each) +- Six eco-friendly tugboats (currently leased) +- Strategic land acquisition potential near Aswan for: + - Private docking facilities + - Organic farming operations + - Vertical integration opportunities + +## Financial Projections (just as example simulation) + +### Revenue Drivers + +- Luxury Vessel Rates: $500-1,000 per room/night +- Traditional Vessel Rates: $250-600 per room/night + +### Seasonal Operations +- Peak Season: 4 months +- Mid Season: 3 months +- Low Season: 3 months + +### Conservative Revenue Projection + +- Total Rooms: 54 +- Average Rate: $300/night +- Operating Days: 20/month +- Operating Months: 10/year +- Potential Annual Revenue: $3.2M +- Conservative Estimate (50%): $1.5M+ + + diff --git a/default/docs/biz/unique.md b/default/docs/biz/unique.md new file mode 100644 index 0000000..36e34a9 --- /dev/null +++ b/default/docs/biz/unique.md @@ -0,0 +1,56 @@ +--- +title: 'Unique' +sidebar_position: 1 +hide_title: true +description: 'The boats are special' +--- + +![](../img/3_boats_sky.png) + +# Unique Competitive Advantages + +As part of our commercial roll out we envision following benefits + +## Industry-Leading Sustainability + +- First-of-its-kind solar-powered fleet on the Nile (still work in progress) +- Advanced water purification systems +- Pioneering green tugboat initiative (still work in progress) +- Setting new environmental standards in Nile tourism + +## Strategic Operational Advantages + +### Rare Operating Licenses + +- Limited number of available Nile cruise permits +- High barriers to entry for new operators +- Protected market position +- Increasing value of operational licenses + +### Veteran Leadership + +- Led by Mr. Maher, 40+ years industry veteran +- Deep understanding of Egyptian maritime operations +- Extensive local network and relationships +- Proven track record in Nile cruise management + +## Vertical Integration Opportunities + +### Land Acquisition Potential + +- Strategic docking facilities +- Organic farming operations +- Farm-to-table dining experience +- Supply chain control +- Additional revenue streams +- Reduced operational costs + +### Market Positioning + +- Only eco-conscious luxury fleet on the Nile +- Unique blend of sustainability and luxury +- Growing demand for responsible tourism +- Premium positioning in expanding market + +This combination of sustainable operations, rare licenses, experienced management, and vertical integration opportunities creates a unique and defensible market position in the luxury Nile cruise sector. + diff --git a/default/docs/boats/_category_.json b/default/docs/boats/_category_.json new file mode 100644 index 0000000..efa4b90 --- /dev/null +++ b/default/docs/boats/_category_.json @@ -0,0 +1,10 @@ +{ + "label": "Boats", + "position": 5, + "link": { + "type": "generated-index", + "description": "Our Boats." + } +} + + diff --git a/default/docs/boats/facilities.md b/default/docs/boats/facilities.md new file mode 100644 index 0000000..7e42fc4 --- /dev/null +++ b/default/docs/boats/facilities.md @@ -0,0 +1,49 @@ +--- +title: 'Facilities' +sidebar_position: 10 +hide_title: true +hide_table_of_contents: true +description: 'Dahabeyas Facilities ' + +--- + + +| Dahabeyas Facilities | VEDA ONE | VEDA TWO | VEDA THREE | VEDA FOUR | +|---------------------------|--------------------------------------------------------------------------------------------|-------------------------|------------------------|--------------------------------------------------------------------------------------------| +| **Restaurants** | Indoor Restaurant on the main deck
Air-conditioned outdoor restaurant | Outdoor on deck | Outdoor on deck | Indoor Restaurant on the main deck
Air-conditioned outdoor restaurant | +| **Lounges & Bars** | Indoor Lounge bar on the main deck
Outdoor bar on the 1st sundeck | Outdoor on deck | Outdoor on deck | Indoor Lounge bar on the main deck
Outdoor bar on the 1st sundeck | +| **Relaxing & Sunbath Deck** | On the 2nd sundeck | On the sundeck | On the sundeck | On the 2nd sundeck | +| **Reception** | 24 hours | 24 hours | 24 hours | 24 hours | +| **Kitchen** | Fully equipped kitchen in all Dahabeyas | Fully equipped kitchen | Fully equipped kitchen | Fully equipped kitchen | + + +#### Traditional Egyptian cuisine: + +- breakfast, lunch, and dinner open buffets & afternoon tea with pastry +- Free fresh fruits and fruit juice from sunrise to midnight +- Food and Beverage: Full board including tea/coffee and mineral water + + + +#### Security + +| Safety & Security on Board Veda Dahabeyas | VEDA ONE | VEDA TWO | VEDA THREE | VEDA FOUR | +|-------------------------------------------|-------------------------------------------------------------|-----------------------------------------------------------|--------------------|-------------------------------------------------------------| +| **Electronic fire and smoke detection** | All over the Dahabeya | All over the Dahabeya except for the passengers' cabins | All over | All over | +| **Surveillance Cameras** | All over the Dahabeya | All over the Dahabeya except for the passengers' cabins | All over | All over | +| **Shaded sun deck level** | In all Dahabeyas | In all Dahabeyas | In all Dahabeyas | In all Dahabeyas | +| **Air Conditioned** | Central Air-condition with individually remote control | Split Air-condition with remote control | On wall fan | Central Air-condition with individually remote control | +| **First aid kit and medical attention** | In all Dahabeyas | In all Dahabeyas | In all Dahabeyas | In all Dahabeyas | +| **Emergency handling and firefighting** | In all Dahabeyas | In all Dahabeyas | In all Dahabeyas | In all Dahabeyas | + +- **In-room electronic private safe**: + - VEDA ONE: Available in cabins + - VEDA TWO: Available on request free of charge + - VEDA THREE: Available on request free of charge + - VEDA FOUR: Available in cabins + +- **Cabin’s door keys**: + - VEDA ONE: Regular key with master key system + - VEDA TWO: Regular key with master key system + - VEDA THREE: Regular key with master key system + - VEDA FOUR: Electronic security locks \ No newline at end of file diff --git a/default/docs/boats/overview.md b/default/docs/boats/overview.md new file mode 100644 index 0000000..a8c552d --- /dev/null +++ b/default/docs/boats/overview.md @@ -0,0 +1,36 @@ +--- +title: 'Veda Boats' +sidebar_position: 1 +hide_title: true +--- + +![](../img/3_boats.png) + +### Our VEDA Boats + + +#### VEDA ONE + +Veda 1 was created as a real house, a place where authenticity and respect for the ancient culture is the real luxury, where the customer feels home and happy. + +--- + +#### VEDA TWO + +Veda 2 is a real authentic sailing boat, copying the ancient original ones. + +--- + +#### VEDA THREE + +Veda 3 is a small family boat. + +--- + +#### VEDA FOUR + +Veda 4 was built for larger groups. With plenty of art, ancient symbols, colors, and cozy places, Veda 4 caters to a real and luxury Nile experience. A once-in-a-lifetime experience. + +#### Additional + +Speedboat to bring the guests to the temples and visits diff --git a/default/docs/boats/tech_data.md b/default/docs/boats/tech_data.md new file mode 100644 index 0000000..4a85b4c --- /dev/null +++ b/default/docs/boats/tech_data.md @@ -0,0 +1,23 @@ +--- +title: 'Tech Data' +sidebar_position: 10 +hide_title: true +hide_table_of_contents: true + +--- + + +## Dahabeyas Capacity & Technical Data + +| Dahabeyas Capacity & Technical Data | VEDA ONE | VEDA TWO | VEDA THREE | VEDA FOUR | +|-------------------------------------|-----------------------------------------|-----------------------------------------|-------------------------------------------|-----------------------------------------| +| **Number of Cabins & Maximum Capacity** | 10 Cabins, 20 Passengers | 10 Cabins, 20 Passengers | 5 Cabins, 10 Passengers | 14 Cabins, 28 Passengers | +| **Cabins Configurations** | 4 Suites with balconies, 6 Cabins | 2 Suites with balconies, 8 Cabins | 1 Suite, 4 Cabins (3 twin beds & 1 queen bed) | 4 Suites with balconies, 10 Cabins | +| **Length and Width** | 50m * 8m | 45m * 8m | 18m * 5m | 55m * 8m | +| **Decks and Masts** | 2 decks, 2 masts | 1 deck, 2 masts | 1 deck, 2 masts | 2 decks, 2 masts | +| **Date of Last Renovation** | August 2019 | August 2018 | January 2020 | - | +| **Power Generation** | 13 KW PV Solar array + 70 KWh battery bank
8 KW Solar thermal water heaters
2 Highly efficient silent generators for backup | 10 KW PV Solar array + 50 KWh battery bank
6 KW Solar thermal water heaters
1 generator for backup | 4 KW PV Solar array + 15 KWh battery bank
4 KW Solar thermal water heaters
1 generator for backup | 20 KW PV Solar array + 70 KWh battery bank
10 KW Solar thermal water heaters
2 Highly efficient silent generators for backup | +| **Air-Condition** | Central air-condition with individual remote control | Individual split units for each room | Fan | Central air-condition with individual remote control | +| **Water Purification** | 3 stages filtration (150, 50 & 5 µm) + Chlorine treatment + SBS injection for Chlorine removal
Kitchen has reverse osmosis setup for fresh fruits and vegetables washing | 3 stages filtration (150, 50 & 5 µm) + Chlorine treatment + SBS injection for Chlorine removal
Kitchen has reverse osmosis setup for fresh fruits and vegetables washing | 3 stages filtration (150, 50 & 5 µm) + Chlorine treatment + SBS injection for Chlorine removal
Kitchen has reverse osmosis setup for fresh fruits and vegetables washing | 3 stages filtration (150, 50 & 5 µm) + Chlorine treatment + SBS injection for Chlorine removal
Kitchen has reverse osmosis setup for fresh fruits and vegetables washing | + + diff --git a/default/docs/boats/veda1/_category_.json b/default/docs/boats/veda1/_category_.json new file mode 100644 index 0000000..4252f3b --- /dev/null +++ b/default/docs/boats/veda1/_category_.json @@ -0,0 +1,10 @@ +{ + "label": "Veda 1", + "position": 10, + "link": { + "type": "generated-index", + "description": "The original one." + } +} + + diff --git a/default/docs/boats/veda1/gallery.md b/default/docs/boats/veda1/gallery.md new file mode 100644 index 0000000..a2146c3 --- /dev/null +++ b/default/docs/boats/veda1/gallery.md @@ -0,0 +1,56 @@ +--- +title: 'Gallery' +sidebar_position: 11 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + + +## Image Gallery + +## The Dahabiya + +![](../veda1/img/veda1_3x.png) + +![](../veda1/img/veda1_veda3.png) + +![](../veda1/img/veda1_water.png) + + + +## Exterior view + +![](../veda1/img/veda1_3xb.png) + + +![](../veda1/img/veda1_deck1.png) + +![](../veda1/img/veda1_deck2.png) + +![](../veda1/img/veda1_deck3.png) + +![](../veda1/img/veda1_inerior2.png) + +![](../veda1/img/veda1_suiteview.png) + +![](../veda1/img/veda1_yoga.png) + + +## Interior view + +![](../veda1/img/veda1_coridor.png) + +![](../veda1/img/veda1_inerior1.png) + +![](../veda1/img/veda1_interior2.png) + +![](../veda1/img/veda1_meetingroom.png) + +![](../veda1/img/veda1_meetingroom2.png) + +![](../veda1/img/veda1_room.png) + + + + diff --git a/default/docs/boats/veda1/img/veda1_3x.png b/default/docs/boats/veda1/img/veda1_3x.png new file mode 100644 index 0000000..ec767b9 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_3x.png differ diff --git a/default/docs/boats/veda1/img/veda1_3xb.png b/default/docs/boats/veda1/img/veda1_3xb.png new file mode 100644 index 0000000..17aa3d3 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_3xb.png differ diff --git a/default/docs/boats/veda1/img/veda1_coridor.png b/default/docs/boats/veda1/img/veda1_coridor.png new file mode 100644 index 0000000..354a9da Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_coridor.png differ diff --git a/default/docs/boats/veda1/img/veda1_deck1.png b/default/docs/boats/veda1/img/veda1_deck1.png new file mode 100644 index 0000000..4dc2afa Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_deck1.png differ diff --git a/default/docs/boats/veda1/img/veda1_deck2.png b/default/docs/boats/veda1/img/veda1_deck2.png new file mode 100644 index 0000000..2c85db7 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_deck2.png differ diff --git a/default/docs/boats/veda1/img/veda1_deck3.png b/default/docs/boats/veda1/img/veda1_deck3.png new file mode 100644 index 0000000..282c25c Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_deck3.png differ diff --git a/default/docs/boats/veda1/img/veda1_inerior1.png b/default/docs/boats/veda1/img/veda1_inerior1.png new file mode 100644 index 0000000..f950a13 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_inerior1.png differ diff --git a/default/docs/boats/veda1/img/veda1_inerior2.png b/default/docs/boats/veda1/img/veda1_inerior2.png new file mode 100644 index 0000000..1aeca0f Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_inerior2.png differ diff --git a/default/docs/boats/veda1/img/veda1_interior2.png b/default/docs/boats/veda1/img/veda1_interior2.png new file mode 100644 index 0000000..a5433e2 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_interior2.png differ diff --git a/default/docs/boats/veda1/img/veda1_meetingroom.png b/default/docs/boats/veda1/img/veda1_meetingroom.png new file mode 100644 index 0000000..67bc55c Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_meetingroom.png differ diff --git a/default/docs/boats/veda1/img/veda1_meetingroom2.png b/default/docs/boats/veda1/img/veda1_meetingroom2.png new file mode 100644 index 0000000..b231a97 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_meetingroom2.png differ diff --git a/default/docs/boats/veda1/img/veda1_plan copy.png b/default/docs/boats/veda1/img/veda1_plan copy.png new file mode 100644 index 0000000..a22d36d Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_plan copy.png differ diff --git a/default/docs/boats/veda1/img/veda1_plan.png b/default/docs/boats/veda1/img/veda1_plan.png new file mode 100644 index 0000000..a22d36d Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_plan.png differ diff --git a/default/docs/boats/veda1/img/veda1_room.png b/default/docs/boats/veda1/img/veda1_room.png new file mode 100644 index 0000000..c3a5f25 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_room.png differ diff --git a/default/docs/boats/veda1/img/veda1_suiteview.png b/default/docs/boats/veda1/img/veda1_suiteview.png new file mode 100644 index 0000000..87fefb8 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_suiteview.png differ diff --git a/default/docs/boats/veda1/img/veda1_veda3.png b/default/docs/boats/veda1/img/veda1_veda3.png new file mode 100644 index 0000000..f27cf59 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_veda3.png differ diff --git a/default/docs/boats/veda1/img/veda1_water.png b/default/docs/boats/veda1/img/veda1_water.png new file mode 100644 index 0000000..eaf8036 Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_water.png differ diff --git a/default/docs/boats/veda1/img/veda1_yoga.png b/default/docs/boats/veda1/img/veda1_yoga.png new file mode 100644 index 0000000..008db9f Binary files /dev/null and b/default/docs/boats/veda1/img/veda1_yoga.png differ diff --git a/default/docs/boats/veda1/layout.md b/default/docs/boats/veda1/layout.md new file mode 100644 index 0000000..f500f2d --- /dev/null +++ b/default/docs/boats/veda1/layout.md @@ -0,0 +1,13 @@ +--- +title: 'Layout' +sidebar_position: 10 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + + +![](img/veda1_plan.png) + + + diff --git a/default/docs/boats/veda2/_category_.json b/default/docs/boats/veda2/_category_.json new file mode 100644 index 0000000..745c5dc --- /dev/null +++ b/default/docs/boats/veda2/_category_.json @@ -0,0 +1,10 @@ +{ + "label": "Veda 2", + "position": 12, + "link": { + "type": "generated-index", + "description": "The original one." + } +} + + diff --git a/default/docs/boats/veda2/gallery.md b/default/docs/boats/veda2/gallery.md new file mode 100644 index 0000000..b37bfe5 --- /dev/null +++ b/default/docs/boats/veda2/gallery.md @@ -0,0 +1,28 @@ +--- +title: 'Gallery' +sidebar_position: 11 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + +![](../veda2/img/veda2_deck2.png) + +![](../veda2/img/veda2_inside.png) + +![](../veda2/img/veda2_inside2.png) + +![](../veda2/img/veda2_intro.png) + +![](../veda2/img/veda2_nile.png) + +![](../veda2/img/veda2_people.png) + +![](../veda2/img/veda2_staff.png) + +![](../veda2/img/veda2_upper.png) + +![](../veda2/img/veda2_view.png) + +![](../veda2/img/veda2_yoga.png) + diff --git a/default/docs/boats/veda2/img/veda2.png b/default/docs/boats/veda2/img/veda2.png new file mode 100644 index 0000000..384af30 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2.png differ diff --git a/default/docs/boats/veda2/img/veda2_deck2.png b/default/docs/boats/veda2/img/veda2_deck2.png new file mode 100644 index 0000000..8963bfc Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_deck2.png differ diff --git a/default/docs/boats/veda2/img/veda2_inside.png b/default/docs/boats/veda2/img/veda2_inside.png new file mode 100644 index 0000000..af13ef2 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_inside.png differ diff --git a/default/docs/boats/veda2/img/veda2_inside2.png b/default/docs/boats/veda2/img/veda2_inside2.png new file mode 100644 index 0000000..048f6af Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_inside2.png differ diff --git a/default/docs/boats/veda2/img/veda2_intro.png b/default/docs/boats/veda2/img/veda2_intro.png new file mode 100644 index 0000000..7825938 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_intro.png differ diff --git a/default/docs/boats/veda2/img/veda2_nile.png b/default/docs/boats/veda2/img/veda2_nile.png new file mode 100644 index 0000000..0677fb6 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_nile.png differ diff --git a/default/docs/boats/veda2/img/veda2_people.png b/default/docs/boats/veda2/img/veda2_people.png new file mode 100644 index 0000000..4486206 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_people.png differ diff --git a/default/docs/boats/veda2/img/veda2_plan.png b/default/docs/boats/veda2/img/veda2_plan.png new file mode 100644 index 0000000..9b6b920 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_plan.png differ diff --git a/default/docs/boats/veda2/img/veda2_staff.png b/default/docs/boats/veda2/img/veda2_staff.png new file mode 100644 index 0000000..2ca2447 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_staff.png differ diff --git a/default/docs/boats/veda2/img/veda2_upper.png b/default/docs/boats/veda2/img/veda2_upper.png new file mode 100644 index 0000000..826e38a Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_upper.png differ diff --git a/default/docs/boats/veda2/img/veda2_view.png b/default/docs/boats/veda2/img/veda2_view.png new file mode 100644 index 0000000..2a08337 Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_view.png differ diff --git a/default/docs/boats/veda2/img/veda2_yoga.png b/default/docs/boats/veda2/img/veda2_yoga.png new file mode 100644 index 0000000..a71c9df Binary files /dev/null and b/default/docs/boats/veda2/img/veda2_yoga.png differ diff --git a/default/docs/boats/veda2/layout.md b/default/docs/boats/veda2/layout.md new file mode 100644 index 0000000..40b559b --- /dev/null +++ b/default/docs/boats/veda2/layout.md @@ -0,0 +1,13 @@ +--- +title: 'Layout' +sidebar_position: 10 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + + +![](img/veda2_plan.png) + + + diff --git a/default/docs/boats/veda3/_category_.json b/default/docs/boats/veda3/_category_.json new file mode 100644 index 0000000..714c1b7 --- /dev/null +++ b/default/docs/boats/veda3/_category_.json @@ -0,0 +1,10 @@ +{ + "label": "Veda 3", + "position": 13, + "link": { + "type": "generated-index", + "description": "The original one." + } +} + + diff --git a/default/docs/boats/veda3/gallery.md b/default/docs/boats/veda3/gallery.md new file mode 100644 index 0000000..3d528c8 --- /dev/null +++ b/default/docs/boats/veda3/gallery.md @@ -0,0 +1,22 @@ +--- +title: 'Gallery' +sidebar_position: 11 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + + +## Image Gallery + +![](../veda3/img/veda3_boats_2.png) + +![](../veda3/img/veda3_boats_3.png) + +![](../veda3/img/veda3_boats_sky.png) + +![](../veda3/img/veda3_boats.png) + +![](../veda3/img/veda3_deck.png) + +![](../veda3/img/veda3.png) diff --git a/default/docs/boats/veda3/img/veda3.png b/default/docs/boats/veda3/img/veda3.png new file mode 100644 index 0000000..0ab8baf Binary files /dev/null and b/default/docs/boats/veda3/img/veda3.png differ diff --git a/default/docs/boats/veda3/img/veda3_boats.png b/default/docs/boats/veda3/img/veda3_boats.png new file mode 100644 index 0000000..ea5a643 Binary files /dev/null and b/default/docs/boats/veda3/img/veda3_boats.png differ diff --git a/default/docs/boats/veda3/img/veda3_boats_2.png b/default/docs/boats/veda3/img/veda3_boats_2.png new file mode 100644 index 0000000..b50e679 Binary files /dev/null and b/default/docs/boats/veda3/img/veda3_boats_2.png differ diff --git a/default/docs/boats/veda3/img/veda3_boats_3.png b/default/docs/boats/veda3/img/veda3_boats_3.png new file mode 100644 index 0000000..73fa693 Binary files /dev/null and b/default/docs/boats/veda3/img/veda3_boats_3.png differ diff --git a/default/docs/boats/veda3/img/veda3_boats_sky.png b/default/docs/boats/veda3/img/veda3_boats_sky.png new file mode 100644 index 0000000..db4c170 Binary files /dev/null and b/default/docs/boats/veda3/img/veda3_boats_sky.png differ diff --git a/default/docs/boats/veda3/img/veda3_deck.png b/default/docs/boats/veda3/img/veda3_deck.png new file mode 100644 index 0000000..a089a3c Binary files /dev/null and b/default/docs/boats/veda3/img/veda3_deck.png differ diff --git a/default/docs/boats/veda3/img/veda3_plan.png b/default/docs/boats/veda3/img/veda3_plan.png new file mode 100644 index 0000000..0056b05 Binary files /dev/null and b/default/docs/boats/veda3/img/veda3_plan.png differ diff --git a/default/docs/boats/veda3/layout.md b/default/docs/boats/veda3/layout.md new file mode 100644 index 0000000..6640e78 --- /dev/null +++ b/default/docs/boats/veda3/layout.md @@ -0,0 +1,13 @@ +--- +title: 'Layout' +sidebar_position: 10 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + +![](../veda3/img/veda3_plan.png) + + + + diff --git a/default/docs/boats/veda4/_category_.json b/default/docs/boats/veda4/_category_.json new file mode 100644 index 0000000..d030633 --- /dev/null +++ b/default/docs/boats/veda4/_category_.json @@ -0,0 +1,10 @@ +{ + "label": "Veda 4", + "position": 14, + "link": { + "type": "generated-index", + "description": "Our Boats Veda 4." + } +} + + diff --git a/default/docs/boats/veda4/gallery.md b/default/docs/boats/veda4/gallery.md new file mode 100644 index 0000000..3ca5379 --- /dev/null +++ b/default/docs/boats/veda4/gallery.md @@ -0,0 +1,17 @@ +--- +title: 'Gallery' +sidebar_position: 11 +hide_title: true +hide_table_of_contents: true +description: '...' +--- + +![](../veda4/img/veda4_artist.png) + +![](../veda4/img/veda4_deck.png) + +![](../veda4/img/veda4_resto.png) + +![](../veda4/img/veda4_room.png) + +![](../veda4/img/veda4_upper.png) diff --git a/default/docs/boats/veda4/img/veda4_artist.png b/default/docs/boats/veda4/img/veda4_artist.png new file mode 100644 index 0000000..03ed2be Binary files /dev/null and b/default/docs/boats/veda4/img/veda4_artist.png differ diff --git a/default/docs/boats/veda4/img/veda4_deck.png b/default/docs/boats/veda4/img/veda4_deck.png new file mode 100644 index 0000000..080e29f Binary files /dev/null and b/default/docs/boats/veda4/img/veda4_deck.png differ diff --git a/default/docs/boats/veda4/img/veda4_plan.png b/default/docs/boats/veda4/img/veda4_plan.png new file mode 100644 index 0000000..03ea489 Binary files /dev/null and b/default/docs/boats/veda4/img/veda4_plan.png differ diff --git a/default/docs/boats/veda4/img/veda4_resto.png b/default/docs/boats/veda4/img/veda4_resto.png new file mode 100644 index 0000000..22dcd59 Binary files /dev/null and b/default/docs/boats/veda4/img/veda4_resto.png differ diff --git a/default/docs/boats/veda4/img/veda4_room.png b/default/docs/boats/veda4/img/veda4_room.png new file mode 100644 index 0000000..bfc4a9d Binary files /dev/null and b/default/docs/boats/veda4/img/veda4_room.png differ diff --git a/default/docs/boats/veda4/img/veda4_upper.png b/default/docs/boats/veda4/img/veda4_upper.png new file mode 100644 index 0000000..eb78e74 Binary files /dev/null and b/default/docs/boats/veda4/img/veda4_upper.png differ diff --git a/default/docs/boats/veda4/layout.md b/default/docs/boats/veda4/layout.md new file mode 100644 index 0000000..d27e760 --- /dev/null +++ b/default/docs/boats/veda4/layout.md @@ -0,0 +1,10 @@ +--- +title: 'Layout' +sidebar_position: 10 +hide_title: true +description: 'Layout' + +--- + +![](../veda4/img/veda4_plan.png) + diff --git a/default/docs/cnn.mdx b/default/docs/cnn.mdx new file mode 100644 index 0000000..7ce3e70 --- /dev/null +++ b/default/docs/cnn.mdx @@ -0,0 +1,39 @@ +--- +title: 'CNN' +sidebar_position: 3 +hide_table_of_contents: true +hide_title: true +--- + +### A Proud Moment + + + +
+