summaryrefslogtreecommitdiff
path: root/smoke/astro.build-main/src/components/landing/Award.astro
diff options
context:
space:
mode:
Diffstat (limited to 'smoke/astro.build-main/src/components/landing/Award.astro')
-rw-r--r--smoke/astro.build-main/src/components/landing/Award.astro33
1 files changed, 0 insertions, 33 deletions
diff --git a/smoke/astro.build-main/src/components/landing/Award.astro b/smoke/astro.build-main/src/components/landing/Award.astro
deleted file mode 100644
index 4b3617670..000000000
--- a/smoke/astro.build-main/src/components/landing/Award.astro
+++ /dev/null
@@ -1,33 +0,0 @@
----
-import Section from './Section.astro';
-import Panel from '../Panel.astro';
----
-
-<Section {...Astro.props}>
- <Panel background="var(--gradient-pop-4)">
- <div class="astro-container container">
- <div class="content">
- <h3 class="head-md"><slot name="title" /></h3>
- <div class="body">
- <slot />
- </div>
- </div>
- </div>
- </Panel>
-</Section>
-
-<style>
- .content {
- color: var(--color-dawn);
- text-align: center;
- }
- .body {
- max-width: 75ch;
- margin: 2em auto 0;
- }
-
- .body :global(a) {
- text-decoration: underline;
- color: white;
- }
-</style>