10 modern React hooks you need
Explore the most useful custom hooks that speed up development.
Read more →
I'm Amrish Yadav, a BCA student at IGNOU with a strong foundation in Physics, Chemistry, and Mathematics from 12th grade. I blend analytical thinking with creative coding to build robust web applications. Passionate about modern UI/UX and backend efficiency.
2+ years of freelance experience · 10+ projects shipped
I love contributing to open source and writing technical blogs.
Fast, scalable websites with modern frameworks (React, Next, Node).
Pixel‑perfect interfaces that work flawlessly on every device.
Robust APIs, serverless functions, and real‑time data solutions.
Explore the most useful custom hooks that speed up development.
Read more →A head‑to‑head comparison for real‑time apps.
Read more →Step‑by‑step guide to create stunning glass effects.
Read more →function debounce(fn, delay) {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => fn(...args), delay);
};
}
const firebaseConfig = {
apiKey: "AIza...",
authDomain: "your-app.firebaseapp.com",
projectId: "your-app",
storageBucket: "your-app.appspot.com"
};
(demo – no server)
No file selected