Remove components from example md file (#831)
This commit is contained in:
parent
1f09df6c7c
commit
d3b535a338
2 changed files with 26 additions and 6 deletions
|
@ -269,3 +269,27 @@ img.cover {
|
|||
max-height: 50vh;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-size: 1.5rem;
|
||||
--padding-block: 1rem;
|
||||
--padding-inline: 1.25rem;
|
||||
--color: var(--theme-divider);
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
padding: var(--padding-block) var(--padding-inline);
|
||||
margin-left: calc(var(--padding-inline) * -1);
|
||||
margin-right: calc(var(--padding-inline) * -1);
|
||||
|
||||
background: transparent;
|
||||
border-left: calc(var(--padding-inline) / 2) solid var(--color);
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
blockquote .source {
|
||||
font-weight: 500;
|
||||
color: var(--color);
|
||||
font-size: 1rem;
|
||||
}
|
|
@ -21,9 +21,7 @@ Today I'm excited to publicly share Astro: a new kind of static site builder tha
|
|||
|
||||
This post marks the first public beta release of Astro. **Missing features and bugs are still to be expected at this early stage.** There are still some months to go before an official 1.0 release, but there are already several fast sites built with Astro in production today. We would love your early feedback as we move towards a v1.0 release later this year.
|
||||
|
||||
<Note>
|
||||
To learn more about Astro and start building your first site, check out [the project README.](https://github.com/snowpackjs/astro#-guides)
|
||||
</Note>
|
||||
> To learn more about Astro and start building your first site, check out [the project README.](https://github.com/snowpackjs/astro#-guides).
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
@ -62,9 +60,7 @@ This new approach to web architecture is called [islands architecture](https://j
|
|||
|
||||
## Embracing the Pit of Success
|
||||
|
||||
<BlockQuote author="Jeff Atwood" source="Falling Into The Pit of Success" sourceHref="https://blog.codinghorror.com/falling-into-the-pit-of-success/">
|
||||
A well-designed system makes it easy to do the right things and annoying (but not impossible) to do the wrong things
|
||||
</BlockQuote>
|
||||
> A well-designed system makes it easy to do the right things and annoying (but not impossible) to do the wrong things<div class="source"><p>– Jeff Atwood</p>[Falling Into The Pit of Success](https://blog.codinghorror.com/falling-into-the-pit-of-success/)</div>
|
||||
|
||||
Poor performance is often framed as a failure of the developer, but we respectfully disagree. In many cases, poor performance is a failure of tooling. It should be difficult to build a slow website.
|
||||
|
||||
|
|
Loading…
Reference in a new issue