Skip to content

Commit a9f4dbd

Browse files
committed
Add about page
1 parent 724669d commit a9f4dbd

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

docs/src/pages/About.vue

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,82 @@
11
<template>
22
<single-page class="single-page-home" label="About">
33
<single-page-banner label="About"></single-page-banner>
4+
5+
<section>
6+
<h2 class="md-headline">Author</h2>
7+
<div class="author-card">
8+
<md-avatar class="md-large">
9+
<img src="assets/marcosmoura.jpg" alt="Marcos Moura">
10+
</md-avatar>
11+
<div class="author-card-info">
12+
<span>Marcos Moura</span>
13+
<div class="author-card-links">
14+
<a href="https://linkedin.com/in/marcosvmmoura" target="_blank" rel="noopener">Linkedin</a>
15+
<a href="https://github.com/marcosmoura" target="_blank" rel="noopener">GitHub</a>
16+
</div>
17+
</div>
18+
</div>
19+
</section>
20+
21+
<section>
22+
<h2 class="md-headline">Credits and Thanks</h2>
23+
<ul>
24+
<li>This library aims to delivery components using almost the same API of <a href="https://material.angularjs.org/latest/" target="_blank">Angular Material</a></li>
25+
<li>Thanks a lot to <a href="https://github.com/elviskang" target="_blank">elviskang</a> who provided me the **vue-material** name on npm.</li>
26+
<li>Thanks to <a href="https://github.com/yyx990803" target="_blank">Evan You</a> for allowing me to use Vue.js Logo.</li>
27+
</ul>
28+
</section>
29+
30+
<section>
31+
<h2 class="md-headline">Internal Dependencies</h2>
32+
You don't need to include any other library to work with vue-material. The focus of this project is to have a standalone build with no external dependence, but aiming to deliver the best experience without break the compatibility with the Vue.js core.
33+
<ul>
34+
<li>
35+
<a href="http://www.jacklmoore.com/autosize/" target="_blank">autosize</a>
36+
</li>
37+
38+
<li>
39+
<a href="https://www.npmjs.com/package/element.scrollintoviewifneeded-polyfill" target="_blank">element.scrollintoviewifneeded-polyfill</a>
40+
</li>
41+
42+
<li>
43+
<a href="https://github.com/lazd/scopedQuerySelectorShim" target="_blank">scopedQuerySelectorShim</a>
44+
</li>
45+
</ul>
46+
</section>
47+
48+
<section>
49+
<h2 class="md-headline">License</h2>
50+
<p>MIT</p>
51+
</section>
452
</single-page>
553
</template>
54+
55+
<style lang="scss" scoped>
56+
.author-card {
57+
display: flex;
58+
align-items: center;
59+
60+
.md-avatar {
61+
margin-right: 16px;
62+
}
63+
64+
.author-card-info {
65+
display: flex;
66+
flex-flow: column;
67+
flex: 1;
68+
}
69+
70+
span {
71+
font-size: 16px;
72+
}
73+
74+
.author-card-links {
75+
display: flex;
76+
77+
a + a {
78+
margin-left: 8px;
79+
}
80+
}
81+
}
82+
</style>

0 commit comments

Comments
 (0)