Skip to content

Commit c031e80

Browse files
committed
Initial commit
Signed-off-by: Nelo-T. Wallus <[email protected]>
0 parents  commit c031e80

File tree

6 files changed

+2304
-0
lines changed

6 files changed

+2304
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/node_modules/
2+
/.vitepress/cache/
3+
/.vitepress/dist/

.vitepress/config.mts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { defineConfig } from 'vitepress'
2+
3+
// https://vitepress.dev/reference/site-config
4+
export default defineConfig({
5+
title: "Platform Mesh",
6+
description: "Platform Mesh establishes interoperability between multiple providers.",
7+
base: '/platform-mesh.github.io/',
8+
themeConfig: {
9+
// https://vitepress.dev/reference/default-theme-config
10+
nav: [
11+
{ text: 'Home', link: '/' },
12+
// { text: 'Scenarios', link: '/scenarios' }
13+
],
14+
15+
outline: [2, 3, 4, 5],
16+
17+
sidebar: [
18+
{
19+
text: 'Examples',
20+
items: [
21+
{ text: 'Markdown Examples', link: '/markdown-examples' },
22+
{ text: 'Runtime API Examples', link: '/api-examples' }
23+
]
24+
}
25+
],
26+
27+
socialLinks: [
28+
{ icon: 'github', link: 'https://github.com/platform-mesh' }
29+
]
30+
}
31+
})

index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
# https://vitepress.dev/reference/default-theme-home-page
3+
layout: home
4+
5+
hero:
6+
name: "Platform Mesh"
7+
tagline: Platform Mesh establishes interoperability between multiple providers.
8+
9+
features:
10+
- title: Feature A
11+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
12+
- title: Feature B
13+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
14+
- title: Feature C
15+
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
16+
---
17+

0 commit comments

Comments
 (0)