...
This commit is contained in:
parent
5ce67dd29e
commit
adf410532b
11
build.sh
11
build.sh
@ -12,6 +12,15 @@ echo "Docs directory: $script_dir"
|
||||
|
||||
#bun build
|
||||
#bun ${script_dir}/node_modules/.bin/docusaurus build
|
||||
pnpm 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/
|
||||
|
99
buildchoice/biz_docusaurus.config.ts
Normal file
99
buildchoice/biz_docusaurus.config.ts
Normal file
@ -0,0 +1,99 @@
|
||||
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'],
|
||||
|
||||
plugins: [
|
||||
async function tailwindPlugin(context, options) {
|
||||
return {
|
||||
name: "docusaurus-tailwindcss",
|
||||
configurePostCss(postcssOptions) {
|
||||
const tailwindcss = require("tailwindcss");
|
||||
const tailwindConfig = require("./tailwind.config.js");
|
||||
postcssOptions.plugins.push(tailwindcss(tailwindConfig));
|
||||
postcssOptions.plugins.push(require("autoprefixer"));
|
||||
return postcssOptions;
|
||||
},
|
||||
configureWebpack(config, isServer, utils) {
|
||||
return {
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": require("path").resolve(__dirname, "src"),
|
||||
},
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
},
|
||||
],
|
||||
|
||||
themeConfig: {
|
||||
docs: {
|
||||
sidebar: {
|
||||
hideable: true,
|
||||
autoCollapseCategories: true,
|
||||
}
|
||||
},
|
||||
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;
|
35
buildchoice/biz_navbar.ts
Normal file
35
buildchoice/biz_navbar.ts
Normal file
@ -0,0 +1,35 @@
|
||||
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: 'Veda',
|
||||
},
|
||||
{
|
||||
type: 'docSidebar',
|
||||
sidebarId: 'bizSidebar',
|
||||
position: 'left',
|
||||
label: 'Business Info',
|
||||
},
|
||||
// {
|
||||
// to: '/blog',
|
||||
// label: 'Blog',
|
||||
// position: 'left',
|
||||
// },
|
||||
// {
|
||||
// type: 'docSidebar',
|
||||
// sidebarId: 'tutorialSidebar',
|
||||
// position: 'left',
|
||||
// label: 'Tutorial',
|
||||
// }
|
||||
],
|
||||
};
|
99
buildchoice/coown_docusaurus.config.ts
Normal file
99
buildchoice/coown_docusaurus.config.ts
Normal file
@ -0,0 +1,99 @@
|
||||
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'],
|
||||
|
||||
plugins: [
|
||||
async function tailwindPlugin(context, options) {
|
||||
return {
|
||||
name: "docusaurus-tailwindcss",
|
||||
configurePostCss(postcssOptions) {
|
||||
const tailwindcss = require("tailwindcss");
|
||||
const tailwindConfig = require("./tailwind.config.js");
|
||||
postcssOptions.plugins.push(tailwindcss(tailwindConfig));
|
||||
postcssOptions.plugins.push(require("autoprefixer"));
|
||||
return postcssOptions;
|
||||
},
|
||||
configureWebpack(config, isServer, utils) {
|
||||
return {
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": require("path").resolve(__dirname, "src"),
|
||||
},
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
},
|
||||
],
|
||||
|
||||
themeConfig: {
|
||||
docs: {
|
||||
sidebar: {
|
||||
hideable: true,
|
||||
autoCollapseCategories: true,
|
||||
}
|
||||
},
|
||||
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;
|
41
buildchoice/coown_navbar.ts
Normal file
41
buildchoice/coown_navbar.ts
Normal file
@ -0,0 +1,41 @@
|
||||
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: 'Veda',
|
||||
},
|
||||
{
|
||||
type: 'docSidebar',
|
||||
sidebarId: 'ownerSidebar',
|
||||
position: 'left',
|
||||
label: 'Shareholder',
|
||||
},
|
||||
{
|
||||
type: 'docSidebar',
|
||||
sidebarId: 'appendixSidebar',
|
||||
position: 'left',
|
||||
label: 'More Info',
|
||||
},
|
||||
// {
|
||||
// to: '/blog',
|
||||
// label: 'Blog',
|
||||
// position: 'left',
|
||||
// },
|
||||
// {
|
||||
// type: 'docSidebar',
|
||||
// sidebarId: 'tutorialSidebar',
|
||||
// position: 'left',
|
||||
// label: 'Tutorial',
|
||||
// }
|
||||
],
|
||||
};
|
@ -9,4 +9,8 @@ echo "Docs directory: $script_dir"
|
||||
|
||||
export NODE_OPTIONS=--openssl-legacy-provider
|
||||
|
||||
cp buildchoice/navbar_investor.ts navigation/navbar.ts
|
||||
cp buildchoice/biz_docusaurus.config.ts docusaurus.config.ts
|
||||
|
||||
npm run start -- --host 0.0.0.0
|
||||
|
||||
|
@ -1,11 +0,0 @@
|
||||
---
|
||||
title: 'Roadmap'
|
||||
sidebar_position: 10
|
||||
# draft: true
|
||||
hide_title: true
|
||||
---
|
||||
![](img/cloud.jpg)
|
||||
|
||||
## Roadmap
|
||||
|
||||
> TODO:
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"label": "The Location",
|
||||
"label": "Appendix",
|
||||
"position": 6,
|
||||
"link": {
|
||||
"type": "generated-index",
|
||||
"description": "More info about the location of the city."
|
||||
"description": "More info."
|
||||
}
|
||||
}
|
||||
|
@ -16,13 +16,17 @@ As we get more members, we can pay ourselves a salary and keep on attracting mor
|
||||
|
||||
## **The First 3 Functions & Their Roles**
|
||||
|
||||
### **Catalyst of Momentum** = 1x coordinator
|
||||
We expect at start some of the following jobs might not be full time yet.
|
||||
|
||||
### **Catalyst of Momentum** = 1x coordinator (50%)
|
||||
|
||||
- coordinate our responsibilities, coordinate our circles, we work following a process as defined in [our colab doc](https://threefold.info/cocreation)
|
||||
- *Purpose*: Drives alignment, operations, and progress across all roles to keep the cooperative agile and active.
|
||||
- *Responsibility*: Lead initiatives, resolve blockers, and ensure continuous forward movement.
|
||||
- *Skills*: Operational leadership, project management, and problem-solving.
|
||||
|
||||
|
||||
|
||||
### **Signal Amplifier** = 1x communication, promotion
|
||||
|
||||
- *Purpose*: Tells the cooperative’s story to the world, attracting new members, supporters, and advocates.
|
||||
|
8
docs/biz/_category_.json
Normal file
8
docs/biz/_category_.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"label": "Business",
|
||||
"position": 11,
|
||||
"link": {
|
||||
"type": "generated-index",
|
||||
"description": "To be further prepared."
|
||||
}
|
||||
}
|
83
docs/biz/biz.md
Normal file
83
docs/biz/biz.md
Normal file
@ -0,0 +1,83 @@
|
||||
---
|
||||
title: 'Investment Opportunity'
|
||||
sidebar_position: 1
|
||||
hide_title: true
|
||||
description: 'Investment Opportunity: Luxury Nile Cruise Operations'
|
||||
---
|
||||
|
||||
![](../main/img/boats_land3.png)
|
||||
|
||||
# Established Luxury Nile Cruise Business
|
||||
|
||||
## 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 30 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
|
||||
|
||||
### 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+
|
||||
|
||||
## Investment Requirements
|
||||
|
||||
### Example Business Case for €3M
|
||||
|
||||
- €2.7M - Core business assets including:
|
||||
- Operational company
|
||||
- Existing fleet
|
||||
- Licenses
|
||||
- Staff contracts
|
||||
- €0.3M - Growth capital for:
|
||||
- Tugboat(s) acquisition
|
||||
- Fleet expansion
|
||||
|
||||
## Structure & Terms
|
||||
|
||||
- Direct ownership of Egyptian entity available
|
||||
- Flexible payment structures including:
|
||||
- Traditional financing
|
||||
- Digital assets (BTC)
|
||||
- Gold
|
||||
- International payment arrangements available
|
||||
|
54
docs/biz/unique.md
Normal file
54
docs/biz/unique.md
Normal file
@ -0,0 +1,54 @@
|
||||
---
|
||||
title: 'Unique'
|
||||
sidebar_position: 1
|
||||
hide_title: true
|
||||
description: 'The boats are special'
|
||||
---
|
||||
|
||||
![](../main/img/3_boats_sky.png)
|
||||
|
||||
# Unique Competitive Advantages
|
||||
|
||||
## Industry-Leading Sustainability
|
||||
|
||||
- First-of-its-kind solar-powered fleet on the Nile
|
||||
- Advanced water purification systems
|
||||
- Pioneering green tugboat initiative (not bought yet)
|
||||
- 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.
|
||||
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
"label": "Become an Owner",
|
||||
"position": 45,
|
||||
"link": {
|
||||
"type": "generated-index",
|
||||
"description": "Lets together own the Veda Operation on the Nile."
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,57 +0,0 @@
|
||||
---
|
||||
title: 'Co-Own'
|
||||
sidebar_position: 1
|
||||
hide_title: true
|
||||
---
|
||||
|
||||
![](../img/temples1.png)
|
||||
|
||||
|
||||
# Become a share & stakeholder of the Veda Nile operation
|
||||
|
||||
- 4,000,000 digital shares of 1 EUR each
|
||||
- the digital shares are registered on a public blockchain and can be traded
|
||||
- digital shares can be used to use the boats at 60% discount
|
||||
|
||||
## Assets
|
||||
|
||||
- company and running operation in Egypt (Maher is the manager and there is a wonderful team of about 30 full time permanent staff)
|
||||
- 2 luxe Veda Nile boats: Mother & Father Veda (24 rooms)
|
||||
- 1 original sailing boat 10 rooms
|
||||
- 4 family boats, 4 a 5 rooms each (3 need to be bought, would give us 20 rooms)
|
||||
- 6 green tugboats (to be invested in, now we rent, but its better to own and be more green)
|
||||
- optional buy land where we can do organic farming & docking of the boats, closer to Aswan.
|
||||
|
||||
## Quick Financials
|
||||
|
||||
- prices of rooms for the luxe boats is 500-1000 USD per room per night
|
||||
- prices of rooms for the organic well run original boats is 250-600 USD per room per night
|
||||
|
||||
nr of months per year
|
||||
|
||||
- 4 high season
|
||||
- 3 mid season
|
||||
- 3 low season
|
||||
|
||||
lets make it all easy
|
||||
|
||||
- 54 rooms x 300 usd for lower fee x 10 months x 20 days per month avg = +3.2m USD
|
||||
- lets take 50% of this, its still +1.5m USD per year
|
||||
- lets take 25% of this, its still +750k USD per year
|
||||
|
||||
## budget
|
||||
|
||||
- 2.5m EUR acquisition of company with all its assets (licenses, company, boats, ...).
|
||||
- 0.5m EUR for acquisition of tugboats, 3 baby boats...
|
||||
- 1m EUR for reserves
|
||||
|
||||
## process
|
||||
|
||||
- register interest, pay 10% now
|
||||
- only if we get to +2m EUR then it will happen, if not all money send back
|
||||
|
||||
## governance
|
||||
|
||||
- a cooperative company structured in a digital freezone
|
||||
- cooperatives are amazing structures, more than 12% of the people in the world are already linked to at least 1 cooperative, an amazing example is the COOP in Switzerland.
|
||||
- the cooperative owns the operational existing company in Egypt
|
@ -14,7 +14,7 @@ We are the proud owners of four beautiful boats on the Nile, and over the years,
|
||||
|
||||
As life takes us on a new journey, we have moved out of Egypt to embark on an exciting adventure in Zanzibar. While we are excited about this next chapter, the boats remain an incredibly important part of our life.
|
||||
|
||||
To ensure this story continues, we are looking for new owners who share our love and respect for these boats, the Nile, and the community they bring together. We envision this as a cooperative venture—a shared stewardship that ensures the boats remain a source of joy, connection, and adventure for years to come.
|
||||
To ensure this story continues, we are looking for new owners who share our love and respect for these boats, the Nile, and the community they bring together.
|
||||
|
||||
If you’ve ever dreamed of owning a piece of the Nile’s magic, joining this cooperative could be your chance to become part of something truly special.
|
||||
|
||||
|
8
docs/owner/_category_.json
Normal file
8
docs/owner/_category_.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"label": "Become a co-owner",
|
||||
"position": 11,
|
||||
"link": {
|
||||
"type": "generated-index",
|
||||
"description": "Sharefolders & Stakeholders."
|
||||
}
|
||||
}
|
85
docs/owner/shareholder.md
Normal file
85
docs/owner/shareholder.md
Normal file
@ -0,0 +1,85 @@
|
||||
---
|
||||
title: 'Co-Own'
|
||||
sidebar_position: 1
|
||||
hide_title: true
|
||||
---
|
||||
|
||||
![](../main/img/temples1.png)
|
||||
|
||||
# Join the Veda Nile Cooperative
|
||||
|
||||
## Cooperative Membership Opportunity
|
||||
|
||||
- 4,000,000 digital cooperative shares available
|
||||
- 1 EUR per share
|
||||
- Blockchain-registered for transparency and easy trading
|
||||
- Members enjoy 60% discount on all cruise bookings
|
||||
|
||||
## Our Community Assets
|
||||
|
||||
### Existing Fleet & Operations
|
||||
|
||||
- Two luxury vessels (Mother & Father Veda) - 24 premium rooms
|
||||
- Traditional sailing vessel - 10 rooms
|
||||
- Family boat fleet expansion plan - 20 rooms total
|
||||
- Professional team of 30 dedicated staff led by veteran manager Maher
|
||||
- Rare Nile operating licenses
|
||||
|
||||
### Planned Sustainable Expansion
|
||||
|
||||
- Six eco-friendly tugboats
|
||||
- Potential organic farm and docking facility
|
||||
- Complete supply chain integration
|
||||
|
||||
## Financial Structure
|
||||
|
||||
### Revenue Model
|
||||
|
||||
- Luxury Vessels: $500-1,000/room/night
|
||||
- Traditional Vessels: $250-600/room/night
|
||||
|
||||
### Conservative Projections
|
||||
|
||||
- Full Capacity: $3.2M/year
|
||||
- 50% Occupancy: $1.5M/year
|
||||
- Minimum Projection: $750K/year
|
||||
|
||||
### Investment Allocation
|
||||
|
||||
- €2.5M - Core asset acquisition
|
||||
- €0.5M - Fleet expansion & tugboats
|
||||
- €1.0M - Operating reserves
|
||||
- Total raise: €4M
|
||||
|
||||
## Cooperative Benefits
|
||||
|
||||
- Democratic ownership structure
|
||||
- Transparent blockchain-based governance
|
||||
- Member discounts on cruises
|
||||
- Profit-sharing potential
|
||||
- Part of global cooperative movement
|
||||
|
||||
## Investment Process
|
||||
|
||||
1. Register interest
|
||||
2. Initial 10% deposit
|
||||
3. Full execution at €2M threshold
|
||||
4. Full refund if threshold not met
|
||||
|
||||
## Governance Structure
|
||||
|
||||
- Digital freezone cooperative ownership
|
||||
- Egyptian operational company as subsidiary
|
||||
- Based on successful cooperative models (e.g., COOP Switzerland)
|
||||
- Member-driven decision making
|
||||
- Transparent blockchain-based voting
|
||||
|
||||
Join a community-owned sustainable tourism venture that combines:
|
||||
|
||||
- Ecological responsibility
|
||||
- Financial viability
|
||||
- Democratic ownership
|
||||
- Luxury experience
|
||||
- Cultural preservation
|
||||
|
||||
Be part of transforming Nile tourism through cooperative ownership and sustainable practices.
|
@ -11,7 +11,7 @@ const config: Config = {
|
||||
favicon: 'img/favicon.svg',
|
||||
|
||||
url: 'https://info.ourworld.tf',
|
||||
baseUrl: '/veda/',
|
||||
baseUrl: '/veda1234/',
|
||||
|
||||
onBrokenLinks: 'warn',
|
||||
onBrokenMarkdownLinks: 'warn',
|
||||
|
@ -7,8 +7,8 @@ export const footer: ThemeConfig['footer'] = {
|
||||
title: 'Veda Nile',
|
||||
items: [
|
||||
{
|
||||
label: 'Introduction',
|
||||
to: '/intro',
|
||||
label: 'Home',
|
||||
to: '/',
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -16,7 +16,7 @@ export const footer: ThemeConfig['footer'] = {
|
||||
title: 'Website',
|
||||
items: [
|
||||
{
|
||||
label: 'Why',
|
||||
label: 'Veda Egypt',
|
||||
to: 'https://www.veda-egypt.com/',
|
||||
},
|
||||
],
|
||||
|
@ -14,6 +14,12 @@ export const navbar: ThemeConfig['navbar'] = {
|
||||
position: 'left',
|
||||
label: 'Veda',
|
||||
},
|
||||
{
|
||||
type: 'docSidebar',
|
||||
sidebarId: 'ownerSidebar',
|
||||
position: 'left',
|
||||
label: 'Shareholder',
|
||||
},
|
||||
{
|
||||
type: 'docSidebar',
|
||||
sidebarId: 'appendixSidebar',
|
||||
|
@ -18,12 +18,24 @@ const sidebars: SidebarsConfig = {
|
||||
dirName: 'main'
|
||||
}
|
||||
],
|
||||
ownerSidebar: [
|
||||
{
|
||||
type: 'autogenerated',
|
||||
dirName: 'owner'
|
||||
}
|
||||
],
|
||||
appendixSidebar: [
|
||||
{
|
||||
type: 'autogenerated',
|
||||
dirName: 'appendix'
|
||||
}
|
||||
],
|
||||
bizSidebar: [
|
||||
{
|
||||
type: 'autogenerated',
|
||||
dirName: 'biz'
|
||||
}
|
||||
],
|
||||
// tutorialSidebar: [
|
||||
// 'intro',
|
||||
// {
|
||||
|
Loading…
Reference in New Issue
Block a user