Skip to content

Commit b99675a

Browse files
committed
Add IT Roundtable landing page
1 parent 55c05aa commit b99675a

21 files changed

+467
-19
lines changed

src/assets/workshop1.jpeg

387 KB
Loading

src/assets/workshop2.jpeg

141 KB
Loading

src/assets/workshop3.jpeg

188 KB
Loading

src/components/BlogCard.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ interface Props {
1616
}
1717
const { id, title, description, author, pubDate, tags, image } = Astro.props;
1818
19-
const { translatePath } = useI18n(Astro.url);
19+
const { lang, translatePath } = useI18n(Astro.url);
2020
21-
const formattedDate = formatDate(pubDate);
21+
const formattedDate = formatDate(pubDate, lang);
2222
---
2323

2424
<a href={translatePath(`/blog/${id}`)}>

src/components/Title.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
import spaceship1 from "../assets/spaceship1.svg";
2+
import type { ImageMetadata } from "astro";
33
import cloudLarge from "../assets/cloud-large.svg";
44
import cloudDarkMedium from "../assets/cloud-dark-medium.svg";
55
66
interface Props {
77
title: string;
88
subtitle?: string;
9-
spaceship?: boolean;
9+
spaceship?: ImageMetadata;
1010
}
1111
1212
const { title, subtitle, spaceship } = Astro.props;
@@ -15,7 +15,7 @@ const { title, subtitle, spaceship } = Astro.props;
1515
<section id="container">
1616
<h1>{title}</h1>
1717
<p>{subtitle}</p>
18-
{spaceship && <img id="spaceship" src={spaceship1.src} alt="Spaceship" />}
18+
{spaceship && <img id="spaceship" src={spaceship.src} alt="Spaceship" />}
1919
<img id="cloud-dark-medium" src={cloudDarkMedium.src} alt="Cloud" />
2020
<img id="cloud-large" src={cloudLarge.src} alt="Cloud" />
2121
</section>
@@ -50,8 +50,8 @@ const { title, subtitle, spaceship } = Astro.props;
5050

5151
#spaceship {
5252
position: absolute;
53-
right: 1rem;
54-
bottom: 1rem;
53+
right: max(calc(10% - 1rem), 1rem);
54+
bottom: max(calc(10% - 1rem), 1rem);
5555
max-height: 75%;
5656
max-width: calc(100vw - 58rem);
5757
z-index: 3;

src/content/blog/api-contract-definitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,5 @@ This makes the above technologies excellent choices, and all of them are a great
230230
step up from simply writing your contract somewhere in a wiki.
231231

232232
Do you want to define your own API contract definitions? Check out our
233-
[Cloud Native Empowerment](/en/services/cloud-native-empowerment?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=api-contract-definitions)
233+
[Cloud Native Empowerment](/en/services/cloud-native-empowerment?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=api_contract_definitions)
234234
service and book your free workshop.

src/content/blog/kubernetes-cost-transparency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,5 @@ information available easily through dashboards and detailed reports, define a
378378
pricing model to increase comparability and eventually introduce chargebacks.
379379

380380
Interested in Kubernetes cost transparency? Check out our
381-
[Cloud Native Empowerment](/en/services/cloud-native-empowerment?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=kubernetes-cost-transparency)
381+
[Cloud Native Empowerment](/en/services/cloud-native-empowerment?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=kubernetes_cost_transparency)
382382
service and book your free workshop.

src/content/blog/kurts-journey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,5 @@ usually take quite some effort when you run them yourself.
148148
And a last word: Don't be like Kurt. Enjoy your time off without distractions.
149149

150150
Do you want to embark on your own cloud journey? Check out our
151-
[Cloud Native Empowerment](/en/services/cloud-native-empowerment?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=kurts-journey)
151+
[Cloud Native Empowerment](/en/services/cloud-native-empowerment?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=kurts_journey)
152152
service and book your free workshop.

src/content/blog/level-up-your-serverless-game.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,5 @@ any errors.
184184
✅ Minimize deployment risk by gradually rolling out new changes to your users.
185185

186186
Want to level up your serverless game with us? Check out our
187-
[Serverless Application Acceleration](/en/services/serverless-application-acceleration?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=level-up-your-serverless-game)
187+
[Serverless Application Acceleration](/en/services/serverless-application-acceleration?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=level_up_your_serverless_game)
188188
service and book your free workshop.

src/content/blog/llms-on-kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,5 +308,5 @@ you're willing to manage.
308308
> Lena F.
309309

310310
Do you want to run your own LLMs on Kubernetes? Check out our
311-
[Pragmatic AI Adoption](/en/services/pragmatic-ai-adoption?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=llms-on-kubernetes)
311+
[Pragmatic AI Adoption](/en/services/pragmatic-ai-adoption?utm_source=bespinian_blog&utm_medium=blog&utm_campaign=llms_on_kubernetes)
312312
service and book your free workshop.

0 commit comments

Comments
 (0)