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 #836 from Susmita-Dey/main
Browse files Browse the repository at this point in the history
Add time content for 3 webinars
  • Loading branch information
Susmita-Dey authored Dec 19, 2023
2 parents fa8370e + 34799ce commit 1a21ad6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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,
},
Expand Down

0 comments on commit 1a21ad6

Please sign in to comment.