Skip to content

Commit

Permalink
src folder change
Browse files Browse the repository at this point in the history
  • Loading branch information
happiefruit committed Apr 16, 2022
1 parent dc48456 commit 8782841
Show file tree
Hide file tree
Showing 18 changed files with 158 additions and 174 deletions.
Binary file added src/Assets/Oracle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Salesforce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/UiPath.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Assets/vb.net.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions src/components/About/About.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { Container, Row, Col } from "react-bootstrap";
import Particle from "../Particle";
import Github from "./Github";
import Applications from "./Applications";
import Techstack from "./Techstack";
import Aboutcard from "./AboutCard";
import laptopImg from "../../Assets/about.png";
Expand All @@ -22,7 +22,7 @@ function About() {
}}
>
<h1 style={{ fontSize: "2.1em", paddingBottom: "20px" }}>
Know Who <strong className="purple">I'M</strong>
Know Who <strong className="purple">I Am</strong>
</h1>
<Aboutcard />
</Col>
Expand All @@ -41,11 +41,13 @@ function About() {
<Techstack />

<h1 className="project-heading">
<strong className="purple">Tools</strong> I use
<strong className="purple">Tool</strong> I use
</h1>
<Toolstack />

<Github />
<h1 className="project-heading">
<strong className="purple">Applications</strong> I automate
</h1>
<Applications />
</Container>
</Container>
);
Expand Down
19 changes: 9 additions & 10 deletions src/components/About/AboutCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,29 @@ function AboutCard() {
<Card.Body>
<blockquote className="blockquote mb-0">
<p style={{ textAlign: "justify" }}>
Hi Everyone, I am <span className="purple">Soumyajit Behera </span>
from <span className="purple"> Bhubaneswar, India.</span>
<br />I am a junior pursuing IMSC in Maths and Computing in BIT
Mesra.
Greetings, I am <span className="purple">Michael Lee </span>
from <span className="purple"> Singapore.</span>
<br />I studied Mechanical Engineering in Nanyang Technological University.
<br />
<br />
Apart from coding, some other activities that I love to do!
Apart from coding, these are some other activities that I love doing!
</p>
<ul>
<li className="about-activity">
<ImPointRight /> Playing Games
<ImPointRight /> Completing Steam game achievements
</li>
<li className="about-activity">
<ImPointRight /> Writting Tech Blogs
<ImPointRight /> Basketball
</li>
<li className="about-activity">
<ImPointRight /> Travelling
<ImPointRight /> Rock-climbing
</li>
</ul>

<p style={{ color: "rgb(155 126 172)" }}>
"Strive to build things that make a difference!"{" "}
"Somehow my brain becomes more hardworking so that I could afford to be lazy."{" "}
</p>
<footer className="blockquote-footer">Soumyajit</footer>
<footer className="blockquote-footer">Michael</footer>
</blockquote>
</Card.Body>
</Card>
Expand Down
59 changes: 59 additions & 0 deletions src/components/About/Applications.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import React from "react";
import oracleLogo from "../../Assets/Oracle.png";
import salesforceLogo from "../../Assets/Salesforce.png";
import { Col, Row } from "react-bootstrap";
import {
SiSap,
SiMicrosoftword,
SiMicrosoftoutlook,

} from "react-icons/si";

import {
RiFileExcel2Fill,
RiChromeFill
} from "react-icons/ri";

function Toolstack() {
return (
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}>
<Col xs={4} md={2} className="tech-icons">
<RiChromeFill />
</Col>

<Col xs={4} md={2} className="tech-icons">
<RiFileExcel2Fill />
</Col>

<Col xs={4} md={2} className="tech-icons">
<SiMicrosoftword />
</Col>

<Col xs={4} md={2} className="tech-icons">
<SiMicrosoftoutlook />
</Col>

<Col xs={4} md={2} className="tech-icons">
<SiSap />
</Col>

<Col xs={4} md={2} className="tech-icons">
<img
src={oracleLogo}
alt="oracle logo"
style={{ maxHeight: "20px" }}
/>
</Col>

<Col xs={4} md={2} className="tech-icons">
<img
src={salesforceLogo}
alt="salesforce logo"
style={{ maxHeight: "100px" }}
/>
</Col>
</Row>
);
}

export default Toolstack;
38 changes: 10 additions & 28 deletions src/components/About/Techstack.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import vbnetLogo from "../../Assets/vb.net.svg";
import { Col, Row } from "react-bootstrap";
import { CgCPlusPlus } from "react-icons/cg";
import {
Expand All @@ -13,41 +14,22 @@ import {
SiPytorch,
SiFirebase,
SiNextdotjs,
SiCsharp,
} from "react-icons/si";

function Techstack() {
return (
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}>
<Col xs={4} md={2} className="tech-icons">
<CgCPlusPlus />
</Col>
<Col xs={4} md={2} className="tech-icons">
<DiJavascript1 />
</Col>
<Col xs={4} md={2} className="tech-icons">
<DiNodejs />
</Col>
<Col xs={4} md={2} className="tech-icons">
<DiReact />
</Col>
<Col xs={4} md={2} className="tech-icons">
<DiMongodb />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiNextdotjs />
</Col>
<Col xs={4} md={2} className="tech-icons">
<DiGit />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiFirebase />
</Col>
<Col xs={4} md={2} className="tech-icons">
<DiPython />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiPytorch />
<SiCsharp />
</Col>
<Col xs={4} md={2} className="tech-icons">
<img
src={vbnetLogo}
alt="vb.net logo"
style={{ maxHeight: "80px" }}
/>
</Col>
</Row>
);
}
Expand Down
23 changes: 8 additions & 15 deletions src/components/About/Toolstack.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import uipathLogo from "../../Assets/UiPath.png";
import { Col, Row } from "react-bootstrap";
import {
SiLinux,
Expand All @@ -11,21 +12,13 @@ import {
function Toolstack() {
return (
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}>
<Col xs={4} md={2} className="tech-icons">
<SiLinux />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiVisualstudiocode />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiPostman />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiVercel />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiHeroku />
</Col>
<Col xs={4} md={2} className="tech-icons">
<img
src={uipathLogo}
alt="uipath logo"
style={{ maxHeight: "100px" }}
/>
</Col>
</Row>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function Footer() {
<Container fluid className="footer">
<Row>
<Col md="4" className="footer-copywright">
<h3>Designed and Developed by Soumyajit Behera</h3>
<h3>Portfolio Template by Soumyajit Behera</h3>
</Col>
<Col md="4" className="footer-copywright">
<h3>Copyright © {year} SB</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function Home() {

<h1 className="heading-name">
I'M
<strong className="main-name"> SOUMYAJIT BEHERA</strong>
<strong className="main-name"> MICHAEL LEE</strong>
</h1>

<div style={{ padding: 50, textAlign: "left" }}>
Expand Down
55 changes: 16 additions & 39 deletions src/components/Home/Home2.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,36 +19,25 @@ function Home2() {
LET ME <span className="purple"> INTRODUCE </span> MYSELF
</h1>
<p className="home-about-body">
I fell in love with programming and I have at least learnt
something, I think… 🤷‍♂️
I love creating
<i>
<b className="purple"> automation scripts </b>
</i>
and navigating around StackOverflow/Google to get my answers!
<br />
<br />I am fluent in classics like
<br />I am fluent in
<i>
<b className="purple"> C++, Javascript and Python. </b>
<b className="purple"> UiPath </b>
</i>
<br />
<br />
My field of Interest's are building new &nbsp;
and
<i>
<b className="purple">Web Technologies and Products </b> and
also in areas related to{" "}
<b className="purple">
Deep Learning and Natural Launguage Processing.
</b>
<b className="purple"> C#. </b>
</i>
<br />
<br />
Whenever possible, I also apply my passion for developing products
with <b className="purple">Node.js</b> and
Currently, I'm focusing on finding tools to help
<i>
<b className="purple">
{" "}
Modern Javascript Library and Frameworks
</b>
</i>
&nbsp; like
<i>
<b className="purple"> React.js and Next.js</b>
<b className="purple"> documentation catch up with development.</b>
</i>
</p>
</Col>
Expand All @@ -60,34 +49,22 @@ function Home2() {
</Row>
<Row>
<Col md={12} className="home-about-social">
<h1>FIND ME ON</h1>
<p>
Feel free to <span className="purple">connect </span>with me
</p>
<h1><span className="purple">FIND </span> ME ON</h1>
<ul className="home-about-social-links">
<li className="social-icons">
<a
href="https://github.com/soumyajit4419"
href="https://github.com/happiefruit"
target="_blank"
rel="noreferrer"
className="icon-colour home-social-icons"
>
<AiFillGithub />
</a>
</li>

<li className="social-icons">
<a
href="https://twitter.com/Soumyajit4419"
target="_blank"
rel="noreferrer"
className="icon-colour home-social-icons"
>
<AiOutlineTwitter />
</a>
</li>
<li className="social-icons">
<a
href="https://www.linkedin.com/in/soumyajit4419/"
href="https://www.linkedin.com/in/shousuan/"
target="_blank"
rel="noreferrer"
className="icon-colour home-social-icons"
Expand All @@ -97,7 +74,7 @@ function Home2() {
</li>
<li className="social-icons">
<a
href="https://www.instagram.com/s.o.u.m.y.a_j.i.t/"
href="https://www.instagram.com/beyondtwoshous/"
target="_blank"
rel="noreferrer"
className="icon-colour home-social-icons"
Expand Down
7 changes: 3 additions & 4 deletions src/components/Home/Type.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ function Type() {
<Typewriter
options={{
strings: [
"Developer",
"Deep Learning Engineer",
"MERN Stack Developer",
"Open Source Contributor",
"RPA Developer",
"RPA Solution Architect",
"Business Analyst",
],
autoStart: true,
loop: true,
Expand Down
9 changes: 0 additions & 9 deletions src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,6 @@ function NavBar() {
</Nav.Link>
</Nav.Item>

<Nav.Item>
<Nav.Link
href="https://blogs.soumya-jit.tech/"
target="_blank"
rel="noreferrer"
>
<ImBlog style={{ marginBottom: "2px" }} /> Blogs
</Nav.Link>
</Nav.Item>

<Nav.Item className="fork-btn">
<Button
Expand Down
Loading

0 comments on commit 8782841

Please sign in to comment.