-
Notifications
You must be signed in to change notification settings - Fork 9
/
_index.html
115 lines (102 loc) · 2.65 KB
/
_index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!-- Index Page for gh-pages/ branch -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@siteed/expo-audio-stream</title>
<style>
:root {
--primary-color: #007bff;
--hover-color: #0056b3;
--bg-color: #f8f9fa;
--card-bg: #ffffff;
--text-color: #2d3748;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
}
.container {
max-width: 800px;
width: 100%;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--text-color);
font-weight: 700;
}
.links-container {
display: grid;
gap: 1.5rem;
margin-top: 2rem;
}
.card-link {
background: var(--card-bg);
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
text-decoration: none;
color: var(--text-color);
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.card-link:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.card-title {
font-size: 1.25rem;
font-weight: 600;
color: var(--primary-color);
}
.card-description {
font-size: 0.95rem;
color: #666;
}
@media (max-width: 600px) {
.container {
padding: 1rem;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>@siteed/expo-audio-stream</h1>
<div class="links-container">
<a href="/expo-audio-stream/docs/" class="card-link">
<span class="card-title">Documentation</span>
<span class="card-description">Explore comprehensive documentation and API references</span>
</a>
<a href="/expo-audio-stream/expo-audio-ui-storybook/" class="card-link">
<span class="card-title">UI Storybook</span>
<span class="card-description">Browse component examples and UI patterns</span>
</a>
<a href="/expo-audio-stream/playground/" class="card-link">
<span class="card-title">Audio Playground</span>
<span class="card-description">Test and experiment with audio features</span>
</a>
</div>
</div>
</body>
</html>