Skip to content

Commit 8ae2bd3

Browse files
committed
first commit
0 parents  commit 8ae2bd3

File tree

9 files changed

+2440
-0
lines changed

9 files changed

+2440
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.vitepress/cache
3+
.vitepress/dist

.vitepress/config.mts

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import { defineConfig } from 'vitepress'
2+
3+
// https://vitepress.dev/reference/site-config
4+
export default defineConfig({
5+
title: 'vLeap Docs',
6+
description: 'Documentation for vLeap products & services.',
7+
lastUpdated: false,
8+
cleanUrls: true,
9+
themeConfig: {
10+
// https://vitepress.dev/reference/default-theme-config
11+
nav: [{ text: 'vLeap', link: 'https://vleap.io' }],
12+
13+
sidebar: [
14+
{
15+
text: 'Introduction',
16+
items: [
17+
{ text: 'Getting Started', link: '/introduction/getting-started.md' },
18+
],
19+
},
20+
{
21+
text: 'Warps',
22+
items: [
23+
{ text: 'General', link: '/warps/intro.md' },
24+
{ text: 'SDKs', link: '/warps/sdks.md' },
25+
],
26+
},
27+
],
28+
29+
socialLinks: [
30+
{ icon: 'twitter', link: 'https://x.com/vLeapGroup' },
31+
{ icon: 'github', link: 'https://github.com/vLeapGroup' },
32+
],
33+
},
34+
})

index.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
layout: home
3+
4+
hero:
5+
name: 'Docs'
6+
text: 'by vLeap.'
7+
tagline: We are the creators of PeerMe, Tagrity and Spawnable.
8+
actions:
9+
- theme: brand
10+
text: Read Docs
11+
link: /introduction/getting-started
12+
- theme: alt
13+
text: Go to vleap.io
14+
link: https://vleap.io
15+
# features:
16+
# - title: Feature A
17+
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
18+
# - title: Feature B
19+
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
20+
# - title: Feature C
21+
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
22+
---

introduction/getting-started.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Getting Started
2+
3+
Welcome to the vLeap documentation! We're dedicated to simplifying your development experience, allowing you to focus on what truly matters for you.

0 commit comments

Comments
 (0)