-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
219 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
import Browser from '~/assets/browser.svg' | ||
import LeftSplash from '~/assets/left-splash.svg' | ||
import RightSplash from '~/assets/right-splash.svg' | ||
const mobileImageSrc = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==' | ||
--- | ||
|
||
<div | ||
class="font-noto pointer-events-none relative z-10 block w-full text-[12px] font-medium text-black opacity-100 lg:shadow-xl lg:after:block" | ||
> | ||
<span | ||
class="absolute bottom-[5%] left-0 z-10 mb-[20px] w-[130px] -translate-x-1/2 translate-y-1/2 lg:bottom-0 lg:-z-10 lg:h-[408px] lg:w-[429px]" | ||
> | ||
<img src={LeftSplash.src} /> | ||
</span> | ||
|
||
<span | ||
class="absolute right-[3%] top-[15%] z-10 mt-[20px] w-[130px] -translate-y-1/2 translate-x-1/2 lg:right-0 lg:top-0 lg:h-[583px] lg:w-[518px]" | ||
> | ||
<img src={RightSplash.src} /> | ||
</span> | ||
|
||
<div id="rwd-mobile-ui" class="left-0 top-0 flex h-full w-full flex-col sm:hidden"> | ||
<img | ||
src={mobileImageSrc} | ||
alt="Mobile Browser UI" | ||
width="500" | ||
height="500" | ||
class="w-full bg-[#F2F2F2] object-contain" | ||
/> | ||
</div> | ||
|
||
<div id="rwd-desktop-ui" class="left-0 top-0 hidden h-full w-full flex-col sm:flex"> | ||
<img src={Browser.src} alt="Desktop Browser UI" class="w-full object-contain" /> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.