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

Add time content for 3 webinars #836

Merged
merged 2 commits into from
Dec 19, 2023
Merged
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
2 changes: 1 addition & 1 deletion src/components/Cards/WebinarCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ 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}`;
: `/events/webinars/${slug}`;
return (
<div className='overflow-hidden rounded-2xl bg-content/5 p-4'>
<img
Expand Down
2 changes: 2 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,15 @@ export const webinar = [
img: PulumiWebinar.poster,
title: PulumiWebinar.name,
description: PulumiWebinar.description,
time: PulumiWebinar.time,
slug: PulumiWebinar.slug,
details: PulumiWebinar,
},
{
img: StateOfJava.poster,
title: StateOfJava.name,
description: StateOfJava.description,
time: StateOfJava.time,
slug: StateOfJava.slug,
details: StateOfJava,
Comment on lines 62 to 75
Copy link

Choose a reason for hiding this comment

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

Recommend completing the PR checklist to ensure code style adherence, documentation updates, passing tests, and non-plagiarism. Screenshots or other evidence of the changes working as expected should be provided.

},
Expand Down