|
|
@@ -0,0 +1,36 @@
|
|
|
+import React, {useState} from "react";
|
|
|
+
|
|
|
+const Gallery: React.FC = () => {
|
|
|
+
|
|
|
+ return (
|
|
|
+ <div className="relative max-w-7xl mx-auto mt-10">
|
|
|
+ <img className="w-[1132px] h-[849px] left-[74px] top-[80px] absolute shadow-[0px_4px_4px_0px_rgba(0,0,0,0.25)]" src="https://placehold.co/1132x849" />
|
|
|
+ <div className="px-96 py-2 left-[153px] top-[886px] absolute inline-flex justify-start items-center gap-2 overflow-hidden">
|
|
|
+ <div className="w-2 h-2 relative bg-white rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ <div className="w-2 h-2 relative bg-white/50 rounded" />
|
|
|
+ </div>
|
|
|
+ <div className="left-[543px] top-[974px] absolute text-center justify-start text-black text-4xl font-bold font-['Inter']">김해지사 전경</div>
|
|
|
+ <div className="w-[1067px] h-24 left-[107px] top-[457px] absolute">
|
|
|
+ <div className="w-24 h-24 left-[974px] top-0 absolute">
|
|
|
+ <div className="w-14 h-14 left-[19px] top-[19px] absolute bg-zinc-300/75" />
|
|
|
+ <div className="left-[38px] top-[31px] absolute text-center justify-start text-black text-2xl font-thin font-['Inter']">{'>'}</div>
|
|
|
+ </div>
|
|
|
+ <div className="w-24 h-24 left-0 top-[1px] absolute">
|
|
|
+ <div className="w-14 h-14 left-[19px] top-[19px] absolute bg-zinc-300/75" />
|
|
|
+ <div className="left-[38px] top-[31px] absolute text-center justify-start text-black text-2xl font-thin font-['Inter']">{'<'}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+};
|
|
|
+
|
|
|
+export default Gallery;
|