kubesimplify / website

This is the official website of Kubesimplify
https://kubesimplify.com
MIT License
54 stars 81 forks source link

created live-workshops page in react #185

Closed sanyamjain04 closed 1 year ago

sanyamjain04 commented 2 years ago

I have created live workshop page in React

Screenshots

there is a youtube video in the box, i dont know why it's not showing in the box while taking screenshot. localhost_3000_live-workshops

@AvineshTripathi Can you please review the PR?

saiyam1814 commented 1 year ago

Why are we changing the live-workshops page @sanyamjain04 ?

saiyam1814 commented 1 year ago

What is the process of adding a new workshop ? can you document that ? @verma-kunal adds these workshops so he should be aware of the changes

sanyamjain04 commented 1 year ago

@saiyam1814 @verma-kunal we have to create a new object and add it to the end of workshop data like this

In file src/data/data.js :-

export const workshopData = [
    {
      coverPhoto: chadMCrowell,
      workshopName: "Linux & Docker Fundamentals",
      date: "July 11th, 2022",
      time: "07:00 AM PT",
      workshopDesc:
        "This workshop aims to build a solid Linux and Docker foundation. You will learn about Linux fundamentals, containers and Docker.",
      workshopLink:
        "https://youtu.be/EUu1E_YKGTw",
        workshopStatus: "Watch Recording",
    },
    { ....
    }
    {
      coverPhoto: photo src,    //  import the photo of person 
      workshopName: "devops ",  // name of the workshop
      date: "July 18th, 2022",  // date of the workshop 
      time: "07:00 AM PT",  // time of the workshop
      workshopDesc:
        "This workshop helps you learn Kubernetes from scratch. Some of the topics include K8s fundamentals, Pods, Deployments, Services, Ingress & more.",   //  description about the workshop data here 
      workshopLink:
        "https://youtu.be/PN3VqbZqmD8", //  if the workshop is recorded then youtube link otherwise google form link here 
        workshopStatus: "Watch Recording",  // if workship is recorded then "Watch Recording " otherwise " Register now "
    }, 
verma-kunal commented 1 year ago

Lemme get back on this by EOD!

verma-kunal commented 1 year ago

Thanks for contributing @sanyamjain04 ✨