My-website/.unused/ParallaxEffect.tsx
2026-01-15 12:44:10 -07:00

18 lines
565 B
TypeScript
Executable file

import '@/styles/parallax-effect.css';
const ParallaxEffect = () => {
return (
<div className="parallax-container">
<div className="parallax-layer layer-1"></div>
<div className="parallax-layer layer-2"></div>
<div className="content-layer">
<div className="parallax-text">
<h1>Welcome to the Parallax Effect</h1>
<p>Scroll down to see the magic happen!</p>
</div>
</div>
</div>
);
};
export default ParallaxEffect;