Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add resource + fix css #4562

Merged
merged 2 commits into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/docs/src/routes/(ecosystem)/ecosystem.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
.ecosystem-menu a {
padding: 10px 10px;
margin: 5px 0;
display: block;
display: flex;
align-items: center;
border: 1px solid transparent;
border-radius: 5px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,39 @@ export const EcosystemMenu = () => {
<span>Community</span>
</a>
</li>
<li>
<a href="/media/#blogs">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
id="_x32_"
width="20px"
height="20px"
viewBox="0 0 512 512"
xml:space="preserve"
fill="#fff"
>
<g id="SVGRepo_bgCarrier" stroke-width="0" />

<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round" />

<g id="SVGRepo_iconCarrier">
<g>
<path
class="st0"
d="M421.073,221.719c-0.578,11.719-9.469,26.188-23.797,40.094v183.25c-0.016,4.719-1.875,8.719-5.016,11.844 c-3.156,3.063-7.25,4.875-12.063,4.906H81.558c-4.781-0.031-8.891-1.844-12.047-4.906c-3.141-3.125-4.984-7.125-5-11.844V152.219 c0.016-4.703,1.859-8.719,5-11.844c3.156-3.063,7.266-4.875,12.047-4.906h158.609c12.828-16.844,27.781-34.094,44.719-49.906 c0.078-0.094,0.141-0.188,0.219-0.281H81.558c-18.75-0.016-35.984,7.531-48.25,19.594c-12.328,12.063-20.016,28.938-20,47.344 v292.844c-0.016,18.406,7.672,35.313,20,47.344C45.573,504.469,62.808,512,81.558,512h298.641c18.781,0,36.016-7.531,48.281-19.594 c12.297-12.031,20-28.938,19.984-47.344V203.469c0,0-0.125-0.156-0.328-0.313C440.37,209.813,431.323,216.156,421.073,221.719z"
/>
<path
class="st0"
d="M498.058,0c0,0-15.688,23.438-118.156,58.109C275.417,93.469,211.104,237.313,211.104,237.313 c-15.484,29.469-76.688,151.906-76.688,151.906c-16.859,31.625,14.031,50.313,32.156,17.656 c34.734-62.688,57.156-119.969,109.969-121.594c77.047-2.375,129.734-69.656,113.156-66.531c-21.813,9.5-69.906,0.719-41.578-3.656 c68-5.453,109.906-56.563,96.25-60.031c-24.109,9.281-46.594,0.469-51-2.188C513.386,138.281,498.058,0,498.058,0z"
/>
</g>
</g>
</svg>
<span>Blogs</span>
</a>
</li>
</ul>
</div>
</aside>
Expand Down
5 changes: 5 additions & 0 deletions packages/docs/src/routes/(ecosystem)/media/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,11 @@ export const MEDIA = mediaObj({
/* Blogs
/*****************************************/
blogs: [
{
href: 'https://tzdesign.de/en/blog/how-10-engineers-deliver-exactly-what-the-browser-wants-with-qwik',
title:
'How 10 Engineers Deliver Exactly What the Browser Wants with Qwik - by Tobias Zimmermann',
},
{
href: 'https://www.builder.io/blog/resumability-from-ground-up',
title: 'Understanding Resumability from the Ground Up',
Expand Down