Skip to content

Commit

Permalink
Add Aaron's awesome talk to homepage and resource page
Browse files Browse the repository at this point in the history
Add an iframe to the homepage and resource page linked to the the youtube video:
"Hermetic Toolchain Creation with Local Remote Execution (LRE) & Nix" by Aaron Mondal, NativeLink
  • Loading branch information
SchahinRohani committed Nov 29, 2024
1 parent 1b7d059 commit e436edc
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/styles/config/vocabularies/TraceMachina/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ Wainer
Gert
Bruer
Eagan
Mondal
2 changes: 2 additions & 0 deletions local-remote-execution/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Local Remote Execution

[![Hermetic Toolchain Creation with Local Remote Execution (LRE) & Nix - Aaron Mondal, NativeLink](https://i.ytimg.com/vi/uokjTev8myk/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG\u0026rs=AOn4CLAhfUYVRAaK7RhLLZ0m_A-T1mYPAg)](https://www.youtube.com/embed/uokjTev8myk?rel=0)

NativeLink's Local Remote Execution is a framework to build, distribute, and
rapidly iterate on custom toolchain setups that are transparent, fully hermetic,
and reproducible across machines of the same system architecture.
Expand Down
12 changes: 12 additions & 0 deletions web/platform/src/components/qwik/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ export const LandingPage = component$(() => {
<Testimonial />
<Features />
<Engineers />
<div class="mx-auto left-0 right-0 w-9/11 flex justify-center items-center flex-col gap-4">
<div class="flex justify-center w-full md:w-9/12 px-8 md:px-0 flex justify-center items-center pt-4 pb-12">
<div class="w-full max-w-4xl aspect-video">
<iframe
title="Hermetic Toolchain Creation with Local Remote Execution (LRE) & Nix - Aaron Mondal, NativeLink"
class="w-full h-full"
src="https://www.youtube.com/embed/uokjTev8myk?rel=0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen"
/>
</div>
</div>
</div>
<Benefits />
<Community />
</main>
Expand Down
12 changes: 12 additions & 0 deletions web/platform/src/pages/resources/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ const pageTitle = "NativeLink Resources | Blog, Case Studies, Changelog";

<LinearGradient text="Announcements" class="text-thin text-4xl self-start pl-8 md:pl-48 py-8"/>

<div class="text-sm flex justify-start w-full md:w-9/12 px-8 md:px-0">An awesome talk of one of TraceMachina's leading engineers Aaron Mondal</div>
<div class="flex justify-start w-full md:w-9/12 px-8 md:px-0 flex justify-center items-center pt-4 pb-12">
<div class="w-full max-w-4xl aspect-video">
<iframe
class="w-full h-full"
src="https://www.youtube.com/embed/uokjTev8myk?rel=0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen"
allowfullscreen
></iframe>
</div>
</div>

<div id="Card" class="relative w-screen px-8 md:px-0 md:w-9/12 flex gap-4 snap-x snap-mandatory overflow-x-auto pb-16 mb-6 ">
{announcements
.sort((a, b) => new Date(b.data.pubDate).getTime() - new Date(a.data.pubDate).getTime())
Expand Down

0 comments on commit e436edc

Please sign in to comment.