-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.component.html
33 lines (30 loc) · 1022 Bytes
/
app.component.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
<header>
<div class="container">
<div class="row">
<a href="https://daily.co/"
><img src="../assets/daily-logo.svg" alt="Daily logo" target="_blank"
/></a>
<div class="divider"></div>
<img height="24" src="../assets/angular.svg" alt="Angular logo" />
<a href="https://github.com/daily-demos/daily-angular" target="_blank"
><span class="header-title">Daily call object Angular demo</span></a
>
</div>
<div class="row">
<a class="round" href="https://docs.daily.co/reference/daily-js"
>API docs <img src="../assets/newtab.svg" alt="Daily logo"
/></a>
<a href="https://github.com/daily-demos/daily-angular" target="_blank">
<img height="24" alt="Github" src="../assets/github.svg"
/></a>
</div>
</div>
</header>
<main class="content">
<!-- Components are rendered based on the route -->
<router-outlet></router-outlet>
<!-- Footer -->
<footer>
<p>Brought to you by Daily :)</p>
</footer>
</main>