-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathapp.component.html
More file actions
81 lines (79 loc) · 1.99 KB
/
app.component.html
File metadata and controls
81 lines (79 loc) · 1.99 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
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
<header>
<a [routerLink]="'/'">
<img
src="/assets/scullyio-logo.svg"
heigth="60px"
width="120px"
alt="scullyLogo"
/>
</a>
<nav>
<app-button
[text]="'GET STARTED'"
[class]="''"
[link]="'/docs/getting-started'"
></app-button>
<app-button
[text]="'Features'"
[class]="'btn-secondary'"
[link]="'/docs/features'"
></app-button>
<app-button
[text]="'Learn'"
[class]="'btn-secondary'"
[link]="'/docs/pre-requisites'"
></app-button>
<app-button
[text]="'Docs'"
[class]="'btn-secondary'"
[link]="'docs/Introduction'"
></app-button>
<app-button
[text]="'Showcase'"
[class]="'btn-secondary'"
[link]="'/docs/showcase'"
></app-button>
<div class="github">
<a href="https://github.com/scullyio/scully">
<img
src="https://assets-git.f3mw1.com/images/modules/logos_page/GitHub-Mark.png"
width="40px"
heigth="40px"
alt="github"
/>
</a>
</div>
</nav>
</header>
<main><router-outlet></router-outlet></main>
<footer>
<div class="footer-1">
<h3>Learn</h3>
<p><a routerLink="/docs">Docs</a></p>
<p><a routerLink="/docs/getting-started">Quickstart</a></p>
<!--p>Tutorial</p-->
</div>
<div class="footer-2">
<h3>Community</h3>
<p><a routerLink="/docs/CONTRIBUTING">Contribute</a></p>
<p>
<a target="_blank" href="https://gitter.im/scullyio/community"
>Gitter Channel</a
>
</p>
<!--p>Upcoming Events</p-->
<p><a target="_blank" href="https://twitter.com/scullyio">Twitter</a></p>
</div>
<div class="footer-3">
<h3>Organization</h3>
<p><a target="_blank" href="https://herodevs.com/">About Us</a></p>
<p><a href="mailto:aaron@hero.dev">Contact Us</a></p>
<p>
<a
target="_blank"
href="https://github.com/scullyio/scully/tree/main/assets/logos"
>Press Kit</a
>
</p>
</div>
</footer>