parent
0fe08f3825
commit
1d113815e7
13 changed files with 351 additions and 257 deletions
After Width: | Height: | Size: 27 KiB |
@ -0,0 +1,11 @@ |
||||
import React from 'react'; |
||||
import ARImage from '../../../../../assets/images/ar.jpg'; |
||||
|
||||
|
||||
export default function AR() { |
||||
return ( |
||||
<div className="relative flex w-full h-full"> |
||||
<img src={ARImage} className="w-full absolute bottom-0 left-0" /> |
||||
</div> |
||||
) |
||||
} |
@ -0,0 +1,36 @@ |
||||
import React from "react"; |
||||
|
||||
export default function QrScanner() { |
||||
return ( |
||||
<div className="relative w-full h-full"> |
||||
<div |
||||
className="absolute left-0 top-0 w-full backdrop-filter backdrop-blur-lg bg-black bg-opacity-40" |
||||
style={{ height: "10%" }} |
||||
></div> |
||||
<div |
||||
className="absolute left-0 top-40 backdrop-filter backdrop-blur-lg bg-black bg-opacity-40" |
||||
style={{ |
||||
top: "10%", |
||||
height: "28%", |
||||
width: "25%", |
||||
}} |
||||
></div> |
||||
<div |
||||
className="absolute right-0 top-40 backdrop-filter backdrop-blur-lg bg-black bg-opacity-40" |
||||
style={{ |
||||
top: "10%", |
||||
height: "28%", |
||||
width: "25%", |
||||
}} |
||||
></div> |
||||
<div |
||||
className="absolute left-0 bottom-0 w-full backdrop-filter backdrop-blur-lg bg-black bg-opacity-40" |
||||
style={{ height: "62%" }} |
||||
></div> |
||||
<div |
||||
className="scanner absolute bg-green-300" |
||||
style={{ height: 5, width: "50%", left: "25%", top: "10%" }} |
||||
></div> |
||||
</div> |
||||
); |
||||
} |
Loading…
Reference in new issue