Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #835 from Susmita-Dey/main
Browse files Browse the repository at this point in the history
Add 3 new webinars
  • Loading branch information
Susmita-Dey authored Dec 19, 2023
2 parents 2ef4528 + d6887cd commit fa8370e
Show file tree
Hide file tree
Showing 8 changed files with 110 additions and 8 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/webinars/pulumi-webinar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/webinars/state-of-java.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 5 additions & 8 deletions src/components/Cards/WebinarCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ import { BsCalendar, BsClock } from 'react-icons/bs';

import { getTime, getTimeZone } from '@/lib/utils';

import ArrowLink from '@/components/links/ArrowLink';
import ButtonLink from '@/components/links/ButtonLink';
import { ArrowLink, ButtonLink } from '@/components/links';

const WebinarCard = ({ img, title, time, description, slug }) => {
const href = slug.includes('https://www.youtube.com/watch?v=')
? slug
: `/events/webinar/${slug}`;
return (
<div className='overflow-hidden rounded-2xl bg-content/5 p-4'>
<img
Expand All @@ -23,12 +25,7 @@ const WebinarCard = ({ img, title, time, description, slug }) => {
<BsClock />
{getTime(time)} {getTimeZone(time)}
</p>
<ArrowLink
as={ButtonLink}
className='mt-4'
href={`/events/webinars/${slug}`}
openNewTab
>
<ArrowLink as={ButtonLink} className='mt-4' href={href} openNewTab>
{new Date().getTime() < new Date(time).getTime()
? 'Register'
: 'Recap'}
Expand Down
12 changes: 12 additions & 0 deletions src/content/Webinars/DevProductivityAIEra.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Poster from '@/assets/webinars/Maximising-Developer-Productivity-AI-Era.png';

const DevProductivityAIEra = {
name: 'Maximising Developer Productivity in the AI Era',
description:
'This webinar will explore strategies and best practices for developers to enhance their productivity in the rapidly evolving landscape of AI technology. It will cover how to effectively integrate AI tools into the development workflow, manage time and resources, and stay updated with the latest trends in AI.',
poster: Poster,
time: '19 December 2023 15:30:00 GMT',
slug: 'https://www.youtube.com/watch?v=lferMocTGso',
};

export default DevProductivityAIEra;
34 changes: 34 additions & 0 deletions src/content/Webinars/PulumiWebinar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import Poster from '@/assets/webinars/pulumi-webinar.jpg';

import {
IndividualWebinarCompletedPageHeader,
IndividualWebinarPageFAQ,
} from './IndividualWebinarPageContent';

const PulumiWebinar = {
header: IndividualWebinarCompletedPageHeader,
name: 'Learn and Build Infrastructure as Code with Pulumi AI',
description:
'The skills gap is real. Understanding Infrastructure as Code (IaC) is necessary to unlock multiple cloud-native careers, from cloud engineering, platform engineering, and DevOps to AI/ML-related. Learn how Pulumi AI empowers you to discover, learn, and build cloud infrastructure so you can add infrastructure as code to your skill set.',
poster: Poster,
videoUrl: 'https://youtube.com/embed/5K8tXgeZV0U',
takeaways: [
'Learn how to use Pulumi AI to set up and manage cloud infrastructure',
'Gain insights into how Pulumi AI simplifies working with various cloud services and managing complex settings',
'Learn how to integrate Pulumi AI into your development workflows',
],
time: '21 December 2023 11:00:00 GMT',
speakers: [
{
name: 'Engin Diri',
description: 'Customer Success Architect @Pulumi',
twitter: '_ediri',
img: 'https://pbs.twimg.com/profile_images/1681427562998685697/-mpZuJgO_400x400.jpg',
},
],
register: 'PulumiWebinar',
slug: 'learn-and-build-infrastructure-as-code-with-pulumi-ai',
faq: IndividualWebinarPageFAQ,
};

export default PulumiWebinar;
35 changes: 35 additions & 0 deletions src/content/Webinars/StateOfJava.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import Poster from '@/assets/webinars/state-of-java.jpg';

import {
IndividualWebinarCompletedPageHeader,
IndividualWebinarPageFAQ,
} from './IndividualWebinarPageContent';

const StateOfJava = {
header: IndividualWebinarCompletedPageHeader,
name: 'Is It Worth Learning Java in 2024?',
description:
'Join us for an insightful webinar as we explore the relevance of Java in 2024. In this session, we will address the pressing question of whether learning Java remains a valuable investment in your career. Discover how Java continues to play a pivotal role in various industries, gain insights into future job opportunities, and explore the exciting possibilities this versatile programming language offers.',
poster: Poster,
videoUrl: 'https://youtube.com/embed/ITEAqgVZAQE',
takeaways: [
'Gain insights into the current state of Java and its future prospects',
'Learn about the latest developments in the Java ecosystem',
'Discover how Java continues to play a pivotal role in various industries',
'Explore the exciting possibilities this versatile programming language offers',
],
time: '22 December 2023 10:00:00 GMT',
speakers: [
{
name: 'Sébastien Blanc',
description: 'Staff Developer Advocate @aiven_io',
twitter: 'sebi2706',
img: 'https://pbs.twimg.com/profile_images/1588539610489126913/68Synunh_400x400.jpg',
},
],
register: 'StateOfJava',
slug: 'state-of-java-in-2024',
faq: IndividualWebinarPageFAQ,
};

export default StateOfJava;
24 changes: 24 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ import ConfigurationAsCode from '@/content/Webinars/ConfigurationAsCode';
import CostOptimizationWebinar from '@/content/Webinars/CostOptimizationWebinar';
import DatabaseGuardrails from '@/content/Webinars/DatabaseGuardrails';
import DeployWithFeatureFlags from '@/content/Webinars/DeployWithFeatureFlags';
import DevProductivityAIEra from '@/content/Webinars/DevProductivityAIEra';
import HeadlessBrowser from '@/content/Webinars/HeadlessBrowser';
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';
import KafkaWebinar from '@/content/Webinars/KafkaWebinar';
import LivecycleWebinar from '@/content/Webinars/LivecycleWebinar';
import ManageK8Applications from '@/content/Webinars/ManageK8Applications';
import ObservabilityDevOps from '@/content/Webinars/ObservabilityDevOps';
import PulumiWebinar from '@/content/Webinars/PulumiWebinar';
import SimplifiedDeploymentWebinar from '@/content/Webinars/SimplifiedDeployment';
import StateOfJava from '@/content/Webinars/StateOfJava';
import SurrealDBWebinar from '@/content/Webinars/SurrealDBWebinar';
import ZeroDowmtime from '@/content/Webinars/ZeroDowntimeKubeslice';

Expand Down Expand Up @@ -48,6 +51,27 @@ const WebinarPageContent = {
export default WebinarPageContent;

export const webinar = [
{
img: DevProductivityAIEra.poster,
title: DevProductivityAIEra.name,
description: DevProductivityAIEra.description,
time: DevProductivityAIEra.time,
slug: DevProductivityAIEra.slug,
},
{
img: PulumiWebinar.poster,
title: PulumiWebinar.name,
description: PulumiWebinar.description,
slug: PulumiWebinar.slug,
details: PulumiWebinar,
},
{
img: StateOfJava.poster,
title: StateOfJava.name,
description: StateOfJava.description,
slug: StateOfJava.slug,
details: StateOfJava,
},
{
img: AutometricsWebinar.poster,
title: AutometricsWebinar.name,
Expand Down

0 comments on commit fa8370e

Please sign in to comment.