Skip to content

Commit

Permalink
final deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanbiswas2468 committed Jul 2, 2024
1 parent 802910d commit d897eea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import Home from "./Components/Home";
import Portfolio from "./Components/Portfolio";

import "./styles.css";
import Education from "./Components/Education.jsx";

/**
* This object represents your information. The project is set so that you
Expand Down Expand Up @@ -46,6 +47,7 @@ const App = () => {
<About />
<Portfolio />
<Footer {...siteProps} primaryColor={primaryColor} secondaryColor={secondaryColor} />
<Education />
</div>
);
};
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Portfolio.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ const Portfolio = () => {
<div style={{ maxWidth: "40%", alignSelf: "center" }}>
<img
src={image}
style={{ height: "90%", width: "100%", objectFit: "cover" }}
style={{ height: "90%", width: "100%", objectFit: "cover", animation: "1s ease-out 0s 1 slideInLeft" }}
alt={imageAltText}

/>
</div>
<div className="container">
Expand Down

0 comments on commit d897eea

Please sign in to comment.