mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
16 lines
543 B
TypeScript
16 lines
543 B
TypeScript
"use client;"
|
|
import React from 'react';
|
|
|
|
const RightHandLayoutImage: React.FC = () => {
|
|
return (
|
|
<div className="fixed w-full h-full overflow-hidden z-0 animate-fade-left animate-once animate-duration-[2000ms] animate-normal animate-fill-forwards">
|
|
<img
|
|
src="/gallery_girl.png"
|
|
className="float-right object-cover h-screen w-full lg:w-5/6 xl:w-3/6 opacity-50 overflow-hidden"
|
|
alt="Background"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RightHandLayoutImage; |