Skip to content

Commit

Permalink
add presentation component
Browse files Browse the repository at this point in the history
  • Loading branch information
WeronikaHS committed Jun 26, 2024
1 parent 620a9da commit 08954dc
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
9 changes: 9 additions & 0 deletions public/images/presentation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions src/components/Presentation.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
---

<section class="mb-8">
<div class="max-w-6xl mx-auto px-6 sm:px-8 md:flex items-center">
<div class="md:basis-1/2 pl-6">
<h3
class="font-bold text-text-heading text-2xl md:text-3xl pt-4 pb-2 w-fit overflow-hidden"
>
Presentation
</h3>
<p class="mb-5">
Learn even more about micro frontends from
<a
class="bg-clip-text text-neuland"
href={"https://speakerdeck.com/naltatis/tractor-store-2-dot-0"}
target="_blank"
>
this presentation</a><br>
first shown at the Micro Frontends Conference 2024
</p>
</div>
<div class="md:basis-1/2 place-content-center">
<img
src="images/presentation.svg"
typeof="foaf:Image"
class="lg:size-72 size-52 m-auto"
/>
</div>
</div>
</section>

<style></style>
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { SITE_TITLE } from "../config";
import BigPicture from "../components/content/BigPicture.astro";
import Contribute from "../components/content/Contribute.astro";
import TechnologicalChallenges from "../components/content/TechnologicalChallenges.astro";
import Presentation from "../components/Presentation.astro";
---

<PageLayout>
Expand All @@ -22,6 +23,7 @@ import TechnologicalChallenges from "../components/content/TechnologicalChalleng
<TechnologicalChallenges />
<BigPicture />
<UseCases />
<Presentation />
<Contribute />
</Fragment>
</PageLayout>

0 comments on commit 08954dc

Please sign in to comment.