-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.77 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NocoBase V1 Documentation</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #1d1d1f; background: #fff; }
.header { padding: 16px 24px; }
.logo { height: 32px; display: block; }
.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: calc(100vh - 64px); text-align: center; padding: 0 24px; }
.hero h1 { font-size: 48px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.hero p { font-size: 18px; color: #666; margin-bottom: 48px; }
.cta { display: flex; gap: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px; font-size: 16px; font-weight: 500; border-radius: 8px; text-decoration: none; transition: opacity 0.2s; }
.btn:hover { opacity: 0.85; }
.btn-primary { background: #2f55d4; color: #fff; border: 1px solid #2f55d4; }
.btn-secondary { background: #fff; color: #1d1d1f; border: 1px solid #d0d0d0; }
</style>
</head>
<body>
<header class="header">
<img class="logo" src="https://www.nocobase.com/images/logo.png" alt="NocoBase">
</header>
<main class="hero">
<h1>NocoBase V1 Documentation</h1>
<p>This repository has been archived. Visit the latest documentation or browse the source on GitHub.</p>
<div class="cta">
<a class="btn btn-primary" href="https://docs.nocobase.com">V2 Documentation</a>
<a class="btn btn-secondary" href="https://github.com/nocobase/docs">GitHub ></a>
</div>
</main>
</body>
</html>