Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamz12345 committed Jul 15, 2024
1 parent 01357e9 commit b8c96f9
Show file tree
Hide file tree
Showing 25 changed files with 59 additions and 148 deletions.
20 changes: 0 additions & 20 deletions asset-manifest.json

This file was deleted.

1 change: 0 additions & 1 deletion index.html

This file was deleted.

4 changes: 3 additions & 1 deletion portfolio/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div id="root">

</div>
</body>
</html>
Binary file added portfolio/src/Assets/HOD_3000.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 portfolio/src/Assets/IDME_2000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 portfolio/src/Assets/trkME+.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion portfolio/src/Components/Navbar/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Navbar = () => {
<div className="navbarContents">
<NavLink to="/" className="logoAndPortfolioText">
<img src={logo} alt="Logo" className="logoImg"></img>
<text className="portfolioText">Portfolio</text>
<p className="portfolioText">Portfolio</p>

</NavLink>
<div className="desktopMenu">
Expand Down
52 changes: 50 additions & 2 deletions portfolio/src/Pages/Hobbies.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,59 @@
import Navbar from "../Components/Navbar/Navbar";
import Footer from "../Components/Footer/Footer";
import ScrollToTop from "../Components/scrollToTop";
import renderPhoto from "../Assets/TT-SU2_700_samples_transparen_background.png";
import HOD from "../Assets/HOD_3000.png";
import IDME from "../Assets/IDME_2000.png";
import trkMEplus from "../Assets/trkME+.png";
import "./About.css";

const Hobbies = () => {
return (
<div>
<Navbar />
<div className="page">
<ScrollToTop/>
<div className="pageAboveFooter">
<Navbar />
<div className="pageContent">

<div className="aboutMidDiv">
<span className="aboutTitleText">3D Models</span>
<span className="boldTxt">Renders</span>
</div>

<div className="homeDivOuter">

<div className="homeDivMid">
<div className="homeDivInner">
<img src={renderPhoto} alt="projectsPhoto" className="homePhoto" />
</div>
</div>

<div className="homeDivMid">
<div className="homeDivInner">
<img src={HOD} alt="projectsPhoto" className="homePhoto" />
</div>
</div>

<div className="homeDivMid">
<div className="homeDivInner">
<img src={IDME} alt="projectsPhoto" className="homePhoto" />
</div>
</div>

<div className="homeDivMid">
<div className="homeDivInner">
<img src={trkMEplus} alt="projectsPhoto" className="homePhoto" />
</div>
</div>

</div>

</div>
<Footer />
</div>
</div>
)
}


export default Hobbies;
4 changes: 2 additions & 2 deletions portfolio/src/Pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ const Home = () => {
<NavLink to="/projects">
<div className="homeDivInner">
<span className="boldTxt">Projects</span>
<video src={pongVideo} alt="projectsPhoto" className="homePhoto" video loop autoPlay muted />
<video src={pongVideo} alt="projectsPhoto" className="homePhoto" loop autoPlay muted />
</div>
</NavLink>
</div>

<div className="homeDivMid">
<NavLink to="/projects">
<NavLink to="/hobbies">
<div className="homeDivInner">
<span className="boldTxt">Hobbies</span>
<img src={renderPhoto} alt="projectsPhoto" className="homePhoto"></img>
Expand Down
3 changes: 2 additions & 1 deletion portfolio/src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './style.css'
import './style.css';


const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
Expand Down
5 changes: 1 addition & 4 deletions portfolio/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,13 @@ li {
}


p{
color: rgb(129, 137, 146);
}

.pageContent{
margin: 1rem auto;
max-width: 80vw;
background: rgb(27, 27, 31);
padding: 1vmax 1vmax;

border-radius: 1vmax;
}

Expand Down
2 changes: 0 additions & 2 deletions static/css/main.73e20a6c.css

This file was deleted.

Loading

0 comments on commit b8c96f9

Please sign in to comment.