mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 20:55:06 +00:00
18 lines
565 B
TypeScript
Executable file
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;
|