11 Commits

Author SHA1 Message Date
amantahiliani
f50ef52fa2 Updated Resume May 2025 2025-05-25 18:06:41 -04:00
amantahiliani
9d811e1e74 Section Glow and better layout 2025-05-11 22:25:39 -04:00
amantahiliani
5aa11f3934 Made Portfolio as the default 2025-05-11 22:07:02 -04:00
amantahiliani
5501c586a3 Smoother animations 2025-05-11 22:03:56 -04:00
amantahiliani
a4925d5944 Animations 2025-05-11 21:53:52 -04:00
amantahiliani
c21eda8c6b Update 2025-05-11 21:26:13 -04:00
amantahiliani
0ffd128e69 Update 2025-05-11 21:26:03 -04:00
amantahiliani
d6e5d1f184 Yarn changes 2025-01-12 23:59:01 -05:00
amantahiliani
c3df99e6c9 Merge branch 'main' of github.com:AmanTahiliani/Portfolio 2025-01-12 23:58:35 -05:00
amantahiliani
f3a115e610 Re-Added Yarn lock 2025-01-12 23:57:42 -05:00
Aman Tahiliani
0422ef27d2 Merge pull request #2 from AmanTahiliani/contact-me-addition-jan25
Added Contact ME
2025-01-13 10:19:43 +05:30
6 changed files with 5201 additions and 4140 deletions

View File

@@ -1,15 +1,38 @@
.App { .App {
text-align: center; text-align: center;
background-color: black; background-color: black;
position: absolute; min-height: 100vh;
top: 0px; width: 100%;
right: 0px;
left: 0px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
color: azure; color: azure;
overflow-x: hidden;
scroll-behavior: smooth;
position: relative;
}
html {
scroll-behavior: smooth;
}
section {
opacity: 0;
transform: translate3d(0, 20px, 0);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
will-change: opacity, transform;
/* min-height: 100vh; */
display: flex;
flex-direction: column;
justify-content: center;
padding: 60px 0;
position: relative;
overflow: hidden; overflow: hidden;
} }
section.visible {
opacity: 1;
transform: translateY(0);
}
.App-logo { .App-logo {
height: 40vmin; height: 40vmin;
pointer-events: none; pointer-events: none;
@@ -47,11 +70,8 @@
.About { .About {
width: 100%; width: 100%;
position: absolute; padding: 40px 0;
top: 120px; margin-top: 60px;
bottom: 0px;
left: 0px;
right: 0px;
} }
hr { hr {
@@ -61,8 +81,24 @@ hr {
border: 10px solid aquamarine; border: 10px solid aquamarine;
} }
.publications { .publications, .Experience, .DevTools, .Contact {
margin-top: 230px; margin: 0;
padding: 60px 0;
width: 100%;
}
.section-title {
margin-bottom: 40px;
transform: translateY(0);
transition: transform 0.4s ease-out;
}
section:hover .section-title {
transform: translateY(-5px);
text-shadow: 0 0 8px rgba(250, 128, 114, 0.6), /* Salmon color glow */
0 0 15px rgba(250, 128, 114, 0.4),
0 0 20px rgba(250, 128, 114, 0.2);
transition: transform 0.4s ease-out, text-shadow 0.4s ease-out;
} }
.slick-dots button:before { .slick-dots button:before {

View File

@@ -17,46 +17,72 @@ import DevToolsComponent from "./components/devtools";
import SocialMedia from "./components/SocialMedia"; import SocialMedia from "./components/SocialMedia";
function Portfolio() { function Portfolio() {
useEffect(() => {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const delay = parseInt(entry.target.dataset.delay) || 0;
setTimeout(() => {
requestAnimationFrame(() => {
entry.target.classList.add('visible');
});
}, delay);
}
});
}, {
threshold: 0.15,
rootMargin: '50px 0px -100px 0px'
});
document.querySelectorAll('section').forEach((section, index) => {
// Add staggered delay to each section
section.dataset.delay = index * 100;
observer.observe(section);
});
return () => observer.disconnect();
}, []);
return ( return (
<div className="App"> <div className="App">
<meta name="Aman Tahiliani's Portfolio"></meta> <meta name="Aman Tahiliani's Portfolio"></meta>
<nav>
<Header /> <Header />
</nav>
<hr></hr> <hr></hr>
<main>
<section>
<About className="About" id="About" /> <About className="About" id="About" />
<div className="publications" id="Publications"> </section>
<h2 style={{ color: "salmon", fontSize: "50px" }}> <section className="Experience" id="Experience">
<b>Publications</b> <h2 className="section-title" style={{ color: "salmon", fontSize: "50px" }}>
</h2>
<SimpleSlider />
</div>
<div className="Experience" id="Experience">
<h2 style={{ color: "salmon", fontSize: "50px", marginTop: "110px" }}>
<b>Experience</b> <b>Experience</b>
</h2> </h2>
<Experience /> <Experience />
</div> </section>
<div className="DevTools" id="DevTools" style={{ marginBottom: "100px" }}> <section className="DevTools" id="DevTools">
<h2 style={{ color: "salmon", fontSize: "50px" }}> <h2 className="section-title" style={{ color: "salmon", fontSize: "50px" }}>
<b>Dev Tools</b> <b>Dev Tools</b>
</h2> </h2>
<DevToolsComponent /> <DevToolsComponent />
</div> </section>
<hr /> <section className="publications" id="Publications">
<div className="Contact" id="Contact" style={{ marginTop: "100px" }}> <h2 className="section-title" style={{ color: "salmon", fontSize: "50px" }}>
<h2 style={{ color: "cyan", fontSize: "50px" }}> <b>Publications</b>
<b>Contact Me!</b> </h2>
<SimpleSlider />
</section>
<section className="Contact" id="Contact">
<h2 className="section-title" style={{ color: "cyan", fontSize: "50px" }}>
<b>Social Links</b>
</h2> </h2>
<SocialMedia <SocialMedia
style={{ color: "white" }} style={{ color: "white" }}
useColorIcons={false} useColorIcons={false}
whiteIcons={true} whiteIcons={true}
/> />
</div> </section>
{/* <div className="Contact" id="Contact"> </main>
<h2 style={{color:"salmon", fontSize:"50px", marginTop:"60px"}}><b>Contact Me!</b></h2>
<Contact/>
</div> */}
</div> </div>
); );
} }
@@ -82,9 +108,9 @@ function Home() {
<li> <li>
<a href="/portfolio">Developer Portfolio</a> <a href="/portfolio">Developer Portfolio</a>
</li> </li>
<li> {/* <li>
<a href="/reviews">Book, TV and Movie Reviews</a> <a href="/reviews">Book, TV and Movie Reviews</a>
</li> </li> */}
</ul> </ul>
</nav> </nav>
</div> </div>
@@ -92,32 +118,27 @@ function Home() {
<div className="footer"> <div className="footer">
<SocialMedia /> <SocialMedia />
</div> </div>
{/* <div className="Contact" id="Contact">
<h2 style={{color:"salmon", fontSize:"50px", marginTop:"60px"}}><b>Contact Me!</b></h2>
<Contact/>
</div> */}
</div> </div>
);
}
function AnimatedRoutes() {
const location = useLocation();
return (
<TransitionGroup>
<CSSTransition key={location.key} classNames="fade" timeout={300}>
<Routes location={location}>
<Route path="/portfolio" element={<Portfolio />} />
<Route path="/" element={<Portfolio />} />
<Route path="/books" element={<Books />} />
{/* <Route path="/" element={<Home />} /> */}
</Routes>
</CSSTransition>
</TransitionGroup>
); );
} }
function App() { function App() {
return ( return (
<Router> <Router>
<AnimatedRoutes /> <div>
<Routes>
<Route path="/" element={<Portfolio />} />
<Route path="/portfolio" element={<Portfolio />} />
<Route path="/reviews" element={<Books />} />
</Routes>
</div>
</Router> </Router>
); );
} }
export default App; export default App;

View File

@@ -19,7 +19,7 @@ class Header extends Component {
<a href="#About">About</a> <a href="#About">About</a>
</Col> </Col>
<Col> <Col>
<a href="#Publications">Publications</a> <a href="#Experience">Experience</a>
</Col> </Col>
</Row> </Row>
</Col> </Col>
@@ -28,17 +28,18 @@ class Header extends Component {
</Col> </Col>
<Col xs={12} md={5}> <Col xs={12} md={5}>
<Row className="navRow nonNameCol"> <Row className="navRow nonNameCol">
<Col>
<a href="#Experience">Experience</a>
</Col>
<Col> <Col>
<a href="#DevTools">Devtools</a> <a href="#DevTools">Devtools</a>
</Col> </Col>
<Col>
<a href="#Publications">Publications</a>
</Col>
<Col> <Col>
<a <a
href="#Contact" href="#Contact"
> >
Contact Me! Social Links
</a> </a>
</Col> </Col>
</Row> </Row>

View File

@@ -1,70 +1,52 @@
import React, { Component, useState } from "react"; import React from "react";
import "bootstrap/dist/css/bootstrap.css"; import "bootstrap/dist/css/bootstrap.css";
// import { Row, Col, TabContainer } from "react-bootstrap"; import { FaGithub, FaLinkedin, FaInstagram, FaEnvelope } from "react-icons/fa";
import "../css/contact.css"; import "../css/contact.css";
function Contact() { function Contact() {
const [name, setName] = useState("");
const [organization, setOrganization] = useState("");
const [message, setMessage] = useState("");
const [popup, setPopup] = useState("");
let handleSubmit = async (e) => {
e.preventDefault();
try {
let res = await fetch("http://localhost:8000/sendMail", {
method: "POST",
body: JSON.stringify({
name: name,
organization: organization,
message: message,
}),
});
// let resJson = await res.json();
console.log(res.status);
if (res.status === 200) {
setName("");
setOrganization("");
setMessage("");
setPopup("Message sent successfully");
} else {
setPopup("Some error occured");
}
} catch (err) {
console.log(err);
}
};
return ( return (
<div> <div className="social-links">
<form onSubmit={handleSubmit}> <a
<input href="https://github.com/yourusername"
type="text" target="_blank"
value={name} rel="noopener noreferrer"
placeholder="Name" className="social-link"
onChange={(e) => setName(e.target.value)} aria-label="GitHub Profile"
required="true" >
/> <FaGithub className="social-icon" />
<br /> <span className="social-text">GitHub</span>
<input </a>
type="text"
value={organization}
placeholder="Organization"
onChange={(e) => setOrganization(e.target.value)}
/>
<br />
<textarea
className="MessageBox"
type="textarea"
value={message}
placeholder="Message"
onChange={(e) => setMessage(e.target.value)}
required="true"
/>
<br />
<button type="submit">Send!</button>
<div className="popup">{popup ? <p>{popup}</p> : null}</div> <a
</form> href="https://linkedin.com/in/yourusername"
target="_blank"
rel="noopener noreferrer"
className="social-link"
aria-label="LinkedIn Profile"
>
<FaLinkedin className="social-icon" />
<span className="social-text">LinkedIn</span>
</a>
<a
href="https://instagram.com/yourusername"
target="_blank"
rel="noopener noreferrer"
className="social-link"
aria-label="Instagram Profile"
>
<FaInstagram className="social-icon" />
<span className="social-text">Instagram</span>
</a>
<a
href="mailto:your.email@example.com"
className="social-link"
aria-label="Email Contact"
>
<FaEnvelope className="social-icon" />
<span className="social-text">Email</span>
</a>
</div> </div>
); );
} }

Binary file not shown.

9065
yarn.lock

File diff suppressed because it is too large Load Diff