Skip to content

Commit

Permalink
Merge pull request #238 from kubesimplify/website-rewamp
Browse files Browse the repository at this point in the history
rewamp website
  • Loading branch information
sanyamjain04 authored Feb 11, 2025
2 parents fc20c35 + 22639c7 commit 44f63b3
Show file tree
Hide file tree
Showing 10 changed files with 283 additions and 322 deletions.
136 changes: 28 additions & 108 deletions package-lock.json

Large diffs are not rendered by default.

61 changes: 36 additions & 25 deletions src/components/Aboutpage/Founder.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,48 @@ const Founder = () => {
<div className={styles.ap_cont_4_founder_description}>
<h1 className={styles.ap_cont_4_heading}>Founder</h1>
<p className={styles.ap_cont_4_para}>
Kubesimplify community is founded by
<span className={styles.ap_cont_1_cloud}> Saiyam Pathak. </span> <br />
Saiyam is a CNCF, Traefik and Portainer Ambassador, CKA/CKAD/CKS
Saiyam Pathak is the founder of Kubesimplify, focusing on
simplifying cloud-native and Kubernetes technologies. Previously at
Civo, Walmart Labs, Oracle, and HP, Saiyam has worked on many facets
of Kubernetes, including machine learning platforms, scaling,
multi-cloud, and managed Kubernetes services. He has implemented
Kubernetes solutions in various organizations. When not coding,
Saiyam contributes to the community by writing blogs and organizing
local meetups for Kubernetes and CNCF. He is also a CNCF TAG
sustainability lead, Kubestronaut. His CKA and CKS e-books are also
at gumroad.
{/* Kubesimplify community is founded by
<span className={styles.ap_cont_1_cloud}>
{" "}
Saiyam Pathak.{" "}
</span>{" "}
<br />
Saiyam is a CNCF yo, Traefik and Portainer Ambassador, CKA/CKAD/CKS
certified, InfluxAce. He regularly contributes to the community by
writing blogs and organizing local meetups for K8s, Rancher, Influx,
CNCF. He had also written a book {" "}
CNCF. He had also written a book{" "}
<span className={styles.ap_cont_1_cloud}>
Let's Learn CKS Scenarios {" "}
Let's Learn CKS Scenarios{" "}
</span>
that helps people prepare for CKS certification.
that helps people prepare for CKS certification. */}
</p>
<div className={styles.founder_logo}>
<a target="_blank" href="https://www.youtube.com/c/saiyam911">
<AiFillYoutube row="img" className={styles.social1} />
</a>
<a target="_blank" href="https://twitter.com/kubesimplify">
<AiOutlineTwitter row="img" className={styles.social2} />
</a>
<a
target="_blank"
href="https://www.linkedin.com/company/kubesimplify/"
>
<TiSocialLinkedin row="img" className={styles.social2} />
</a>
<a target="_blank" href="https://www.instagram.com/saiyampathak/">
<AiOutlineInstagram row="img" className={styles.social2} />
</a>
<a target="_blank" href="https://github.com/kubesimplify">
<AiFillGithub row="img" className={styles.social3} />
</a>
</div>
<a target="_blank" href="https://www.youtube.com/c/saiyam911">
<AiFillYoutube row="img" className={styles.social1} />
</a>
<a target="_blank" href="https://x.com/SaiyamPathak">
<AiOutlineTwitter row="img" className={styles.social2} />
</a>
<a target="_blank" href="https://www.linkedin.com/in/saiyampathak/">
<TiSocialLinkedin row="img" className={styles.social2} />
</a>
<a target="_blank" href="https://www.instagram.com/saiyampathak/">
<AiOutlineInstagram row="img" className={styles.social2} />
</a>
<a target="_blank" href="https://github.com/saiyam1814">
<AiFillGithub row="img" className={styles.social3} />
</a>
</div>
</div>
<div className={styles.ap_cont_4_image_block}>
<img className={styles.ap_cont_4_img} src={Saiyam} alt="saiyam" />
Expand Down
63 changes: 37 additions & 26 deletions src/components/Aboutpage/Mission.js
Original file line number Diff line number Diff line change
@@ -1,37 +1,48 @@
import React from 'react'
import styles from './styles.module.css';
import Opportunity from './images/Opportunity.png'
// Function for Mission start
import React from "react";
import styles from "./styles.module.css";
import Opportunity from "./images/Opportunity.png";
// Function for Mission start
const AboutpageFeatures = () => {

return (
// About Page starts
<section className={styles.about_features}>

{/* Heading Starts */}
<div className={styles.ap_cont_1}>
// About Page starts
<section className={styles.about_features}>
{/* Heading Starts */}
<div className={styles.ap_cont_1}>
<h2 className={styles.ap_cont_1_heading}> About Us </h2>
</div>
</div>

{/* Mission starts */}
{/* Mission starts */}

<div className={styles.ap_cont_1_mission}>
<h1 className={styles.ap_cont_1_mission_content}> On a mission to teach
<span className={styles.ap_cont_1_cloud}> cloud native</span> to everyone </h1>
<h3 className={styles.ap_cont_1_mission_content_para}> Simplifying cloud native for all so that more people<br />
can learn, get good jobs and earn more! </h3>
</div>

{/* Our Objective summarize in image */}
<div className={styles.ap_cont_1_mission}>
<h1 className={styles.ap_cont_1_mission_content}>
{" "}
On a mission to teach
<span className={styles.ap_cont_1_cloud}>
{" "}
cloud native, AI and Wasm
</span>{" "}
to everyone{" "}
</h1>
<h3 className={styles.ap_cont_1_mission_content_para}>
{" "}
Simplifying cloud native for all so that more people
<br />
can learn, get good jobs and earn more!{" "}
</h3>
</div>

{/* Our Objective summarize in image */}

<div className={styles.ap_cont_2}>
<div className={styles.ap_cont_2_box}>
<img className={styles.ap_cont_2_picture} src={Opportunity} alt="Opportunities" />
<img
className={styles.ap_cont_2_picture}
src={Opportunity}
alt="Opportunities"
/>
</div>
</div>

</section>

)
}
export default AboutpageFeatures
);
};
export default AboutpageFeatures;
Loading

0 comments on commit 44f63b3

Please sign in to comment.