Skip to content

Commit

Permalink
intro and big picture
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricius Seifert committed Jun 10, 2024
1 parent 49e9be9 commit a945ccb
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 39 deletions.
72 changes: 35 additions & 37 deletions src/components/ImgText.astro
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
---
import MFExample from "./MFExample.astro";
import TeamBoundaries from "./teamBoundaries.astro";
---

<div class="mb-8">
<!--<h3
class="font-bold text-text-heading text-2xl md:text-3xl pt-4 pb-2 overflow-hidden"
<span
class="
bg-gradient-to-bl bg-no-repeat bg-bottom bg-[length:110%_60%]
from-orange-300 to-orange-600 dark:from-primary-blue dark:to-primary-blue
"
<div class="root">
<div class="text">
<h2
class="font-bold text-text-heading text-2xl md:text-3xl pt-4 pb-2 overflow-hidden"
>
Placeholder
</span>
>-->
Implementations
</h2>
<p class="">
Same verticalized micro frontends application with different tech stacks
and integration techniques.
</p>
</div>

<div class="examples">
<MFExample
Expand Down Expand Up @@ -42,11 +41,9 @@ import TeamBoundaries from "./teamBoundaries.astro";
lib3="images/vue.svg"
integration="Tailor"
rendering="SSR"
/><div class="basis-1/4">
<p class="md:text-right md:pr-4">
Same verticalized micro frontends application with different tech stacks
and integration techniques.
</p>
/>

<div>
<button
class="mt-2 mb-2 c_Button c_Button--secondary c_Button--size-normal"
>
Expand All @@ -57,20 +54,30 @@ import TeamBoundaries from "./teamBoundaries.astro";
</button>
</div>
</div>
<div class="md:flex items-center mt-8">
<div class="basis-3/4">
<TeamBoundaries />
</div>
<div class="basis-1/4 md:pl-4 pt-4">
<p>
E-Commerce project with boundaries for three teams and use-cases for
routing, integration and communication.
</p>
</div>
</div>
</div>

<style>
.root {
display: grid;
grid-template-columns: repeat(12, 1fr);
margin-bottom: 4rem;
}
.text {
grid-column: 1 / 6;
margin-bottom: 2rem;
}

.examples {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: 300px;
gap: 1rem;
grid-column: 1 / 13;
}
.examples > :global(*) {
grid-column: span 3;
}

.c_Button--size-normal {
--button-height: 50px;
}
Expand Down Expand Up @@ -199,12 +206,3 @@ import TeamBoundaries from "./teamBoundaries.astro";
0 -3px 3px rgba(255, 255, 255, 0.2) inset;
}
</style>

<style>
.examples {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 300px;
gap: 1rem;
}
</style>
4 changes: 2 additions & 2 deletions src/components/Intro.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
---

<section class="mb-20 intro">
<section class="intro">
<div class="text">
<h1
class="pt-4 mb-10 m-auto font-bold text-text-heading text-3xl md:text-4xl"
Expand Down Expand Up @@ -34,7 +34,7 @@
}

.text {
grid-column: 1 / 7;
grid-column: 1 / 6;
}

.image {
Expand Down
16 changes: 16 additions & 0 deletions src/components/content/BigPicture.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
import TeamBoundaries from "../teamBoundaries.astro";
---

<h2>Big picture / Team responsabilities</h2>
<div class="md:flex items-center mt-8">
<div class="basis-3/4">
<TeamBoundaries />
</div>
<div class="basis-1/4 md:pl-4 pt-4">
<p>
E-Commerce project with boundaries for three teams and use-cases for
routing, integration and communication.
</p>
</div>
</div>
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Info from "../components/Info.astro";
import Listings from "../components/Listings.astro";
import UseCases from "../components/UseCases.astro";
import { SITE_TITLE } from "../config";
import BigPicture from "../components/content/BigPicture.astro";
---

<PageLayout>
Expand All @@ -16,6 +17,7 @@ import { SITE_TITLE } from "../config";
<ImgText />
<Info />
<Listings />
<BigPicture />
<UseCases />
</Fragment>
</PageLayout>

0 comments on commit a945ccb

Please sign in to comment.