Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Netlify deployment #295

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20,860 changes: 19,833 additions & 1,027 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"private": true,
"name": "masterPortfolio",
"homepage": ".",
"homepage": "https://oops-moment.github.io/react-gh-pages",
"version": "0.1.0",
"scripts": {
"build": "react-scripts build",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -b gh-pages -d build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"test": "react-scripts test"
},
"dependencies": {
Expand All @@ -18,7 +18,6 @@
"bootstrap": "^4.4.1",
"chart.js": "^2.9.3",
"fs": "0.0.1-security",
"gh-pages": "^2.1.1",
"graphql": "^14.5.8",
"node-fetch": "^2.6.0",
"prettier-package-json": "^2.1.3",
Expand All @@ -40,6 +39,7 @@
"@iconify/icons-logos": "^1.0.9",
"@iconify/react": "^1.1.1",
"dotenv": "^6.2.0",
"gh-pages": "^5.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
783 changes: 783 additions & 0 deletions src/assests/images/Woman-Sitting-At-Table.svg
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/assests/images/block.avif
Binary file not shown.
Binary file added src/assests/images/coursehero_logo.webp
Binary file not shown.
Binary file added src/assests/images/gogirl.jpeg
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/assests/images/iiit-hyderabad-logo.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/assests/images/nss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Header extends Component {
Projects
</NavLink>
</li>
<li>
{/* <li>
<NavLink
to="/opensource"
tag={Link}
Expand All @@ -95,7 +95,7 @@ class Header extends Component {
>
Open Source
</NavLink>
</li>
</li> */}
<li>
<NavLink
to="/contact"
Expand Down
10 changes: 5 additions & 5 deletions src/containers/greeting/Greeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export default function Greeting(props) {
</div>
</div>
<div className="greeting-image-div">
{/* <img
alt="saad sitting on table"
src={require("../../assests/images/feelingProud.svg")}
></img> */}
<FeelingProud theme={theme} />
<img
alt="saad sitting on table"
src={require("../../assests/images/Woman-Sitting-At-Table.svg")}
></img>
{/* <FeelingProud theme={theme} /> */}
</div>
</div>
</div>
Expand Down
75 changes: 0 additions & 75 deletions src/pages/contact/ContactComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,81 +55,6 @@ class Contact extends Component {
</div>
</div>
</Fade>
<Fade bottom duration={1000} distance="40px">
<div className="blog-heading-div">
<div className="blog-heading-text-div">
<h1 className="blog-heading-text" style={{ color: theme.text }}>
{blogSection["title"]}
</h1>
<p
className="blog-header-detail-text subTitle"
style={{ color: theme.secondaryText }}
>
{blogSection["subtitle"]}
</p>
<div className="blogsite-btn-div">
<Button
text="Visit My Blogsite"
newTab={true}
href={blogSection.link}
theme={theme}
/>
</div>
</div>
<div className="blog-heading-img-div">
{/* <img
src={require(`../../assests/images/${blogSection["avatar_image_path"]}`)}
alt=""
/> */}
<BlogsImg theme={theme} />
</div>
</div>
</Fade>
<Fade bottom duration={1000} distance="40px">
<div className="address-heading-div">
<div className="contact-heading-img-div">
{/* <img
src={require(`../../assests/images/${addressSection["avatar_image_path"]}`)}
alt=""
/> */}
<AddressImg theme={theme} />
</div>
<div className="address-heading-text-div">
<h1
className="address-heading-text"
style={{ color: theme.text }}
>
{addressSection["title"]}
</h1>
<p
className="contact-header-detail-text subTitle"
style={{ color: theme.secondaryText }}
>
{addressSection["subtitle"]}
</p>
<h1
className="address-heading-text"
style={{ color: theme.text }}
>
{phoneSection["title"]}
</h1>
<p
className="contact-header-detail-text subTitle"
style={{ color: theme.secondaryText }}
>
{phoneSection["subtitle"]}
</p>
<div className="address-btn-div">
<Button
text="Visit on Google Maps"
newTab={true}
href={addressSection.location_map_link}
theme={theme}
/>
</div>
</div>
</div>
</Fade>
</div>
<Footer theme={this.props.theme} onToggle={this.props.onToggle} />
<TopButton theme={this.props.theme} />
Expand Down
Loading