Skip to content

Commit b1647f9

Browse files
committed
links
1 parent 436b8cf commit b1647f9

File tree

5 files changed

+34
-9
lines changed

5 files changed

+34
-9
lines changed

MyApp/Pages/AutoQuery.cshtml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
Instant APIs from your DTOs.
4242
</h1>
4343

44-
<p class="mt-4 text-lg leading-8 text-slate-600 dark:text-slate-300">
44+
<p class="mt-4 max-w-[640px] text-lg leading-8 text-slate-600 dark:text-slate-300">
4545
High performance, industrial strength, code-first APIs. Skip the boilerplate and instantly expose queryable &amp; CRUD endpoints for your databases.
4646
</p>
4747

@@ -88,7 +88,8 @@
8888
<!-- Code Block -->
8989
<div class="overflow-x-auto">
9090
<!-- Added !bg-transparent to pre/code to prevent double background colors -->
91-
<pre class="!bg-transparent text-sm leading-6 text-slate-300 font-mono"><span class="text-slate-500"> // Create Queyrable APIs from just Request DTOs</span><code><span class="text-yellow-300">[Route(</span><span class="text-green-300">"/bookings"</span><span class="text-yellow-300">)]</span>
91+
<pre class="!bg-transparent text-sm leading-6 text-slate-300 font-mono"><span class="text-slate-500">// Create Queyrable APIs from just Request DTOs</span>
92+
<code><span class="text-yellow-300">[Route(</span><span class="text-green-300">"/bookings"</span><span class="text-yellow-300">)]</span>
9293
<span class="text-purple-400">public class</span> <span class="text-yellow-300">SearchBookings</span> : <span class="text-blue-400">QueryDb</span>&lt;<span class="text-green-400">Booking</span>&gt;
9394
{
9495
<span class="text-purple-400">public</span> <span class="text-blue-400">string</span>? Name { <span class="text-purple-400">get</span>; <span class="text-purple-400">set</span>; }
@@ -98,9 +99,8 @@
9899
<span class="text-purple-400">public</span> <span class="text-blue-400">DateTime</span>? FromDate { <span class="text-purple-400">get</span>; <span class="text-purple-400">set</span>; }
99100
}
100101

101-
<span class="text-slate-500">/* Immediately available from:
102-
GET /bookings?Name=John&AboveCost=50
103-
*/</span></code></pre>
102+
<span class="text-slate-500">// Immediately available from:
103+
// GET /bookings?Name=John&AboveCost=50</span></code></pre>
104104
</div>
105105
</div>
106106

MyApp/Pages/AutoUi.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<div class="mx-auto max-w-2xl lg:mx-0 lg:max-w-xl lg:flex-shrink-0 lg:pt-8">
3434
<div class="mt-24 sm:mt-32 lg:mt-16">
3535
<div class="inline-flex space-x-6">
36-
<span class="rounded-full bg-indigo-500/10 px-3 py-1 text-sm font-semibold leading-6 text-indigo-400 ring-1 ring-inset ring-indigo-500/20">What's new</span>
36+
<a href="https://docs.servicestack.net/ai-chat-ui" class="rounded-full bg-indigo-500/10 px-3 py-1 text-sm font-semibold leading-6 text-indigo-400 ring-1 ring-inset ring-indigo-500/20">What's new</a>
3737
<span class="inline-flex items-center space-x-2 text-sm font-medium leading-6 text-gray-300">
3838
<a href="https://docs.servicestack.net/ai-chat-ui">Just shipped: AI ChatGPT-like UI</a>
3939
</span>

MyApp/Pages/React/Index.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<div class="max-w-2xl">
4646
<div class="inline-flex items-center rounded-full border border-cyan-500/30 bg-cyan-950/30 px-3 py-1 text-sm font-medium text-cyan-300 backdrop-blur-xl mb-8">
4747
<span class="flex h-2 w-2 rounded-full bg-cyan-400 mr-2 animate-pulse"></span>
48-
New React Templates Available
48+
<a href="/react/#start">New React Templates Available</a>
4949
</div>
5050

5151
<h1 class="text-4xl sm:text-5xl lg:text-6xl font-extrabold tracking-tight text-white leading-[1.1]">
@@ -574,7 +574,7 @@
574574

575575
<div>
576576
<div class="mb-8">
577-
<h3 class="mt-8 text-3xl font-extrabold tracking-tight text-gray-900 dark:text-gray-50 dark:text-gray-50 sm:text-4xl">
577+
<h3 id="start" class="mt-8 text-3xl font-extrabold tracking-tight text-gray-900 dark:text-gray-50 dark:text-gray-50 sm:text-4xl">
578578
Getting Started
579579
</h3>
580580

MyApp/Pages/Vue/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-[#42b883] opacity-75"></span>
3131
<span class="relative inline-flex rounded-full h-2 w-2 bg-[#42b883]"></span>
3232
</span>
33-
<span>Vue Component Library</span>
33+
<a href="https://docs.servicestack.net/vue/autoquerygrid">Vue Component Library</a>
3434
</div>
3535

3636
<!-- Headline -->

MyApp/wwwroot/css/app.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@
140140
--color-black: #000;
141141
--color-white: #fff;
142142
--spacing: 0.25rem;
143+
--breakpoint-sm: 40rem;
143144
--breakpoint-md: 48rem;
144145
--breakpoint-lg: 64rem;
145146
--breakpoint-xl: 80rem;
@@ -1394,15 +1395,36 @@
13941395
.max-w-7xl {
13951396
max-width: var(--container-7xl);
13961397
}
1398+
.max-w-\[8rem\] {
1399+
max-width: 8rem;
1400+
}
1401+
.max-w-\[10rem\] {
1402+
max-width: 10rem;
1403+
}
1404+
.max-w-\[12rem\] {
1405+
max-width: 12rem;
1406+
}
1407+
.max-w-\[20rem\] {
1408+
max-width: 20rem;
1409+
}
13971410
.max-w-\[48\%\] {
13981411
max-width: 48%;
13991412
}
1413+
.max-w-\[100px\] {
1414+
max-width: 100px;
1415+
}
14001416
.max-w-\[100rem\] {
14011417
max-width: 100rem;
14021418
}
14031419
.max-w-\[240px\] {
14041420
max-width: 240px;
14051421
}
1422+
.max-w-\[500px\] {
1423+
max-width: 500px;
1424+
}
1425+
.max-w-\[640px\] {
1426+
max-width: 640px;
1427+
}
14061428
.max-w-full {
14071429
max-width: 100%;
14081430
}
@@ -1427,6 +1449,9 @@
14271449
.max-w-screen-md {
14281450
max-width: var(--breakpoint-md);
14291451
}
1452+
.max-w-screen-sm {
1453+
max-width: var(--breakpoint-sm);
1454+
}
14301455
.max-w-sm {
14311456
max-width: var(--container-sm);
14321457
}

0 commit comments

Comments
 (0)