-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #238 from kubesimplify/website-rewamp
rewamp website
- Loading branch information
Showing
10 changed files
with
283 additions
and
322 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.