Skip to content

Commit 8ea3f84

Browse files
committed
add baselines
1 parent 633d09e commit 8ea3f84

File tree

13 files changed

+86
-1
lines changed

13 files changed

+86
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
book

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# docs.exitcloud.io
1+
# docs.exitcloud.io

book.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[book]
2+
title = "exitcloud.io - User Guide"
3+
description = "Documentation for exitcloud.io – Lightweight Cloud Exit Readiness for MSPs and SMEs."
4+
authors = ["Bence Hezso"]
5+
language = "en"
6+
7+
[output.html]
8+
theme = "theme"
9+
additional-css = ["theme/custom.css"]

src/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Welcome
2+
3+
exitcloud.io is a lightweight cloud exit readiness platform that helps individuals, SMEs, and MSPs assess their cloud exit risks.
4+
5+
This documentation explains what exitcloud.io is, who it’s for, and how your data is handled.
6+
7+
## Overview
8+
- [What is exitcloud.io?](overview/what-is-exitcloud.md)
9+
- [Who it’s for?](overview/who-its-for.md)
10+
- [Data & Privacy](overview/data-privacy.md)
11+
- [Security](overview/security.md)

src/SUMMARY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Summary
2+
3+
- [Welcome](README.md)
4+
5+
# Overview
6+
- [What is exitcloud.io?](overview/what-is-exitcloud.md)
7+
- [Who it’s for](overview/who-its-for.md)
8+
- [Data & Privacy](overview/data-privacy.md)
9+
- [Security](overview/security.md)

src/overview/data-privacy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Data & Privacy

src/overview/security.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Security

src/overview/what-is-exitcloud.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# What is exitcloud.io?

src/overview/who-its-for.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Who it’s for

theme/custom.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/* exitcloud.io docs – minimal clean styling */
2+
.content {
3+
line-height: 1.75;
4+
}
5+
6+
@media (min-width: 1024px) {
7+
.content {
8+
max-width: 900px;
9+
}
10+
}
11+
12+
/* Slightly larger base text */
13+
html {
14+
font-size: 16px;
15+
}
16+
17+
/* Softer code blocks */
18+
pre, code {
19+
border-radius: 10px;
20+
}
21+
pre {
22+
padding: 1rem;
23+
}

0 commit comments

Comments
 (0)