-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,36 @@ | ||
--- | ||
import ButtonLink from './ButtonLink.astro' | ||
import ButtonLink from './ButtonLink.astro'; | ||
--- | ||
|
||
<style> | ||
h3.heading { | ||
display: block; | ||
font-size: 1.5rem; | ||
letter-spacing: 1px; | ||
letter-spacing: 1px; | ||
text-align: center; | ||
font-weight: 400; | ||
text-shadow: | ||
0 0 25px #fff7; | ||
text-shadow: 0 0 25px #fff7; | ||
} | ||
</style> | ||
|
||
<div class="flex items-center flex-col gap-8 pb-12"> | ||
<h3 class="heading">Ready for the deep dive?</h3> | ||
<div class="not-content"> | ||
<ButtonLink href="/about/">View the Docs</ButtonLink> | ||
<div class="not-content flex flex-row"> | ||
<a | ||
href="/setup/astro/" | ||
type="button" | ||
class="text-gray-900 bg-white hover:bg-gray-100 border border-gray-200 focus:ring-4 focus:outline-none focus:ring-gray-100 font-medium rounded-lg text-sm px-5 py-2.5 text-center inline-flex items-center dark:focus:ring-gray-600 dark:bg-gray-800 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 me-2 mb-2 no-underline" | ||
> | ||
<img class="icon" width="16" style="margin-right: 12px;" src="/images/dev-tools-astro.svg" /> | ||
Setup for Astro</a | ||
> | ||
<a | ||
href="/setup/other/" | ||
type="button" | ||
class="text-gray-900 bg-white hover:bg-gray-100 border border-gray-200 focus:ring-4 focus:outline-none focus:ring-gray-100 font-medium rounded-lg text-sm px-5 py-2.5 text-center inline-flex items-center dark:focus:ring-gray-600 dark:bg-gray-800 dark:border-gray-700 dark:text-white dark:hover:bg-gray-700 me-2 mb-2 no-underline" | ||
> | ||
<img class="icon" width="16" style="margin-right: 12px;" src="/images/glyph.svg" /> | ||
Other Frameworks</a | ||
> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters