Skip to content

Commit

Permalink
Footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Dec 6, 2023
1 parent 45a1f70 commit 5f80468
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
28 changes: 21 additions & 7 deletions packages/website/src/components/DocsCta.astro
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>
8 changes: 2 additions & 6 deletions packages/website/src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@



<style>
.footer {
border-top: 1px solid var(--sl-color-gray-5);
Expand All @@ -26,12 +23,11 @@
.footer {
grid-template-columns: 1fr 1fr 1fr;
}

}
</style>

<div class="footer">
<span>Created by <a href="https://sentry.io">Sentry</a></span>
<span>Check it out on <a href="https://github.com/getsentry/spotlight">Github</a></span>
<span>Visit us on <a href="https://discord.gg/sentry">Discord</a></span>
</div>
<span>Visit us on <a href="https://discord.com/channels/621778831602221064/1176977569678114847">Discord</a></span>
</div>

0 comments on commit 5f80468

Please sign in to comment.