Skip to content

Commit 3b25b29

Browse files
authored
docs: minor landing page improvements (#1788)
1 parent 5373659 commit 3b25b29

File tree

4 files changed

+30
-10
lines changed

4 files changed

+30
-10
lines changed

docs/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default defineConfig({
9393
starlightLinksValidator({
9494
errorOnFallbackPages: false,
9595
errorOnInconsistentLocale: true,
96-
exclude: ['http://localhost:8080', 'http://localhost:8080/**'],
96+
exclude: ['/blog/**', 'http://localhost:8080', 'http://localhost:8080/**'],
9797
}),
9898
],
9999
}),

docs/src/content/docs/blog/future-of-dart-frog.mdx

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,38 +47,44 @@ worked on Dart Frog since its inception in April 2022:
4747
---
4848

4949
<div class="grid grid-cols-6 gap-4">
50-
<a href="https://github.com/alestiago">
50+
<a href="https://github.com/alestiago" aria-label="About Alejandro">
5151
<img
52+
alt="Alejandro Profile Picture"
5253
class="rounded-full"
5354
src="https://avatars.githubusercontent.com/u/44524995?v=4"
5455
/>
5556
</a>
56-
<a href="https://github.com/erickzanardo">
57+
<a href="https://github.com/erickzanardo" aria-label="About Erick">
5758
<img
59+
alt="Erick Profile Picture"
5860
class="rounded-full"
5961
src="https://avatars.githubusercontent.com/u/835641?v=4"
6062
/>
6163
</a>
62-
<a href="https://github.com/felangel">
64+
<a href="https://github.com/felangel" aria-label="About Felix">
6365
<img
66+
alt="Felix Profile Picture"
6467
class="rounded-full"
6568
src="https://avatars.githubusercontent.com/u/8855632?v=4"
6669
/>
6770
</a>
68-
<a href="https://github.com/wolfenrain">
71+
<a href="https://github.com/wolfenrain" aria-label="About Jochum">
6972
<img
73+
alt="Jochum Profile Picture"
7074
class="rounded-full"
7175
src="https://avatars.githubusercontent.com/u/15887627?v=4"
7276
/>
7377
</a>
74-
<a href="https://github.com/renancaraujo">
78+
<a href="https://github.com/renancaraujo" aria-label="About Renan">
7579
<img
80+
alt="Renan Profile Picture"
7681
class="rounded-full"
7782
src="https://avatars.githubusercontent.com/u/6718144?v=4"
7883
/>
7984
</a>
80-
<a href="https://github.com/marcossevilla">
85+
<a href="https://github.com/marcossevilla" aria-label="About Marcos">
8186
<img
87+
alt="Marcos Profile Picture"
8288
class="rounded-full"
8389
src="https://avatars.githubusercontent.com/u/31174242?v=4"
8490
/>
@@ -126,7 +132,7 @@ as part of that meeting. Some of the work we have planned includes:
126132

127133
- 💬 Come join the community on [Discord](https://discord.gg/dart-frog)
128134
- 🙋
129-
[Open an issue](https://github.com/dart-frog-dev/dart_frog/issues/new/choose)-
135+
[Open an issue](https://github.com/dart-frog-dev/dart_frog/issues/new/choose)
130136
if you encounter a bug or would like a new feature added.
131137
- 👀 Stay tuned for more updates in the near future including new feature
132138
releases, documentation improvements, community events, and more!

docs/src/content/docs/index.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ deployment in just a few minutes with our detailed documentation.
4343

4444
</SplitCard>
4545

46-
<ListCard title="Learn" icon="open-book">
46+
<ListCard title="Core Concepts" icon="information">
4747

4848
- [Introduction](/getting-started)
4949
- [Routing](/basics/routes)
@@ -54,7 +54,7 @@ deployment in just a few minutes with our detailed documentation.
5454

5555
</ListCard>
5656

57-
<ListCard title="Tutorials" icon="open-book">
57+
<ListCard title="Tutorials" icon="star">
5858

5959
- [Hello World](/tutorials/hello-world)
6060
- [Echo](/tutorials/echo)
@@ -65,6 +65,15 @@ deployment in just a few minutes with our detailed documentation.
6565

6666
</ListCard>
6767

68+
<Card title="News" icon="open-book">
69+
[Check out our blog](/blog/) for the latest on all things Dart Frog.
70+
</Card>
71+
72+
<Card title="Community" icon="discord">
73+
Join the growing Dart Frog community on
74+
[Discord](https://discorg.gg/dart-frog).
75+
</Card>
76+
6877
</CardGrid>
6978

7079
<Discord />

docs/src/styles/landing.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,8 @@
5454
width: 100%;
5555
max-width: 700px;
5656
}
57+
58+
.hero-html,
59+
h1 {
60+
font-weight: 800;
61+
}

0 commit comments

Comments
 (0)