Skip to content

Commit f4b4594

Browse files
authored
Merge pull request #18 from seesharprun/add-quickstart-link
Add quickstart links
2 parents 72e5f11 + c5f7cb1 commit f4b4594

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

src/web/MainLayout.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<main class="container">
44
<h1 class="my-5 text-center">
5-
Azure Cosmos DB for NoSQL | Client library for .NET
5+
Azure Cosmos DB for NoSQL | .NET Quickstart
66
</h1>
77
@Body
88
</main>

src/web/Pages/Index.razor

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,26 @@
77
</pre>
88

99
<section class="d-flex justify-content-center">
10-
<button type="button" class="btn btn-primary @(_runAgainEnabled ? "" : "disabled")" @onclick="RunAgain">
11-
<i class="bi bi-arrow-clockwise"></i>
10+
<div class="list-group py-2">
11+
<button type="button" class="list-group-item list-group-item-action @(_runAgainEnabled ? "" : "disabled") active" aria-current="true" @onclick="RunAgain">
12+
<i class="bi bi-arrow-clockwise me-2"></i>
1213
Run again
1314
</button>
15+
<a href="https://learn.microsoft.com/azure/cosmos-db/nosql/quickstart-dotnet#walk-through-the-net-library-code" class="list-group-item list-group-item-action" target="_blank">
16+
<i class="bi bi-book me-2"></i>
17+
Walk through the code for this sample application
18+
<small class="ms-1 align-top">
19+
<i class="bi bi-box-arrow-up-right" style="font-size: 0.65rem;"></i>
20+
</small>
21+
</a>
22+
<a href="https://learn.microsoft.com/azure/cosmos-db/nosql/" class="list-group-item list-group-item-action" target="_blank">
23+
<i class="bi bi-lightbulb me-2"></i>
24+
Learn more about Azure Cosmos DB for NoSQL
25+
<small class="ms-1 align-top">
26+
<i class="bi bi-box-arrow-up-right" style="font-size: 0.65rem;"></i>
27+
</small>
28+
</a>
29+
</div>
1430
</section>
1531

1632
<footer class="fixed-bottom bg-secondary bg-body-secondary border">

src/web/Pages/_Host.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<head>
1010
<meta charset="utf-8" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1">
12-
<title>Azure Cosmos DB for NoSQL</title>
12+
<title>Azure Cosmos DB for NoSQL | .NET Quickstart</title>
1313
<base href="~/" />
1414
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.min.css">
1515
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1/font/bootstrap-icons.min.css">

0 commit comments

Comments
 (0)