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

Add livecycle webinar #749

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/webinars/docker-compose.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/webinars/kafka/poster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/content/Hackathons/syncloop.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const SyncloopHackathon = {
// !NOTE: Please add the respective youtube video embed URL
videoUrl: null,
// !NOTE: Please add the respective youtube live stream URL
liveUrl: 'https://www.youtube.com/watch?v=sST7JGLq2as',
liveUrl: '#register',
about: [
'Syncloop is excited to host a virtual API Innovation Hackathon, bringing together developers, architects, and tech enthusiasts to showcase their creativity, problem-solving skills, and innovation in API development.',
'The goal of this hackathon is to encourage participants to build groundbreaking API solutions using the Syncloop platform, driving advancements in API development and integration.',
Expand Down
6 changes: 6 additions & 0 deletions src/content/Webinars/KafkaWebinar.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ const KafkaWebinar = {
linkedin: 'prasad-dorbala',
img: Speaker,
},
{
name: 'Olyvia Rakshit',
description: 'VP Marketing and Product UX at Avesha',
linkedin: 'olyviar',
img: 'https://media.licdn.com/dms/image/C5603AQGBsnsig7SpNA/profile-displayphoto-shrink_800_800/0/1596214090727?e=1698278400&v=beta&t=rLl7PqIdT4BJuqEZINW1CtSXmlpDhrPCLSA9bIcCoaY',
},
],
register: 'KafkaWebinar',
slug: 'multiple-clouds-with-kubeslice',
Expand Down
35 changes: 35 additions & 0 deletions src/content/Webinars/SimplifyWithDockerCompose.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import Poster from '@/assets/webinars/docker-compose.png';

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

const SimplifyWithDockerCompose = {
header: IndividualWebinarCompletedPageHeader,
name: 'How Docker Compose can make life easier for you and your team',
description:
'This webinar explores how you can use Docker Compose to create preview enviornments to help with code reviews, and how doing so can simplify developer workflows',
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

There's a typo in the word "environments". It should be corrected as follows:

- 'This webinar explores how you can use Docker Compose to create preview enviornments to help with code reviews, and how doing so can simplify developer workflows',
+ 'This webinar explores how you can use Docker Compose to create preview environments to help with code reviews, and how doing so can simplify developer workflows',

poster: Poster,
videoUrl: null,
takeaways: [
"Introduce Docker Compose. What is it. Why it's needed. How it helps devs",
'One issue with compose is getting feedback/approval because its all local',
"Present what we're building with the extension to extend local envs to include others who want to give feedback (talk about Extension and how to publish with Preevy).",
'This is part of our global mission at Livevcycle - to give devs multiple ways to get feedback at any point of the SDLC - SaaS, SDK, Preevy, Extension.',
],
time: '28 August 2023 11:30:00 GMT',
speakers: [
{
name: 'Pradumna Saraf',
description: 'Developer Advocate at Livecycle',
twitter: 'pradumna_saraf',
img: 'https://pbs.twimg.com/profile_images/1591119953511317504/6B1Qvb11_400x400.jpg',
},
],
register: 'SimplifyWithDockerCompose',
slug: 'simplify-with-docker-compose',
faq: IndividualWebinarPageFAQ,
};

export default SimplifyWithDockerCompose;
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import BPFWebinar from './BPFWebinar';
import ChatOpsWebinar from './ChatOpsWebinar';
import GopherWebinar from './GopherWebinar';
import NoCodeApproachWebianr from './NoCodeApproachWebianr';
import SimplifyWithDockerCompose from './SimplifyWithDockerCompose';

const WebinarPageContent = {
header: [
Expand Down Expand Up @@ -39,6 +40,14 @@ const WebinarPageContent = {
export default WebinarPageContent;

export const webinar = [
{
img: SimplifyWithDockerCompose.poster,
title: SimplifyWithDockerCompose.name,
description: SimplifyWithDockerCompose.description,
time: SimplifyWithDockerCompose.time,
slug: SimplifyWithDockerCompose.slug,
details: SimplifyWithDockerCompose,
},
{
img: BiteSizeOtterize.poster,
title: BiteSizeOtterize.name,
Expand Down