-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (97 loc) · 3.47 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
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pattern Library :: Buttons</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/components/button.css">
<script src="/vendor/codemirror/lib/codemirror.js"></script>
<link rel="stylesheet" href="vendor/codemirror/lib/codemirror.css">
<script src="/vendor/codemirror/mode/xml/xml.js"></script>
<script src="/vendor/codemirror/mode/javascript/javascript.js"></script>
<script src="/vendor/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<script src="/js/patlib.js"></script>
</head>
<body>
<header>header.</header>
<nav aria-label="Primary">
<h3>Foundations</h3>
<ul>
<li class="selected">
<a href="/" title="Introduction">Introduction</a>
</li>
<li>
<a href="/patlib/color" title="Color">Color</a>
</li>
<li>
<a href="/patlib/typography" title="Typography">Typography</a>
</li>
<li>
<a href="/patlib/grid" title="Grid System">Grid System</a>
</li>
</ul>
<h3>Components</h3>
<ul>
<li>
<a href="/patlib/buttons" title="Buttons">Buttons</a>
</li>
<li>
<a href="/patlib/links" title="Links">Links</a>
</li>
<li>
<a href="/patlib/feedback" title="Feedback">Feedback</a>
</li>
<li>
<a href="/patlib/forms" title="Form Elements">Form Elements</a>
</li>
<li>
<a href="/patlib/helpers" title="Helper Classes">Helper Classes</a>
</li>
<li>
<a href="/patlib/lists" title="Lists">Lists</a>
</li>
<li>
<a href="/patlib/navigation" title="Navigation">Navigation</a>
</li>
<li>
<a href="/patlib/quotes" title="Quotes">Quotes</a>
</li>
<li>
<a href="/patlib/tables" title="Tables">Tables</a>
</li>
</ul>
</nav>
<main>
<h1>Introduction</h1>
<section>
<h3>Our brand on the web</h3>
<p>This pattern library holds the building blocks of [<i>your name here</i>>] -- our website and our app. Centralizing these React components and CSS utilities helps us forge a consistent user experience that is always up to date with our latest brand guidelines.</p>
</section>
<section>
<h4>Guidelines</h4>
<p>These visual guidelines form a harmonious visual system where we can not only be modular but extremely thoughtful as to how we use each component.</p>
<ul>
<li><a href="/typography">Typography</a></li>
<li><a href="/color">Color</a></li>
<li><a href="/layouts">Layouts</a></li>
</ul>
</section>
<section>
<h4>Components</h4>
<p>Explore each of the many components used to build our app, along with the design principles we use to construct them.</p>
<ul>
<li><a href="/buttons">Buttons</a></li>
<li><a href="/links">Links</a></li>
<li><a href="/tables">Tables</a></li>
<li><a href="#">linky to a component</a></li>
<li><a href="#">linky to a component</a></li>
</ul>
</section>
<section>
<h4>Utilities</h4>
<p>Beyond the components themselves, we use a variety of CSS and JS utilities. These enable us to position, space, or otherwise visually present the components in the way they’re intended to within a given flow or layout.</p>
</section>
</main>
</body>
</html>