Skip to content

Commit

Permalink
Merge pull request #40 from linkwarden/dev
Browse files Browse the repository at this point in the history
minor fix
  • Loading branch information
daniel31x13 authored Mar 6, 2024
2 parents 77eed4e + a2feb32 commit 6b11a55
Showing 1 changed file with 57 additions and 24 deletions.
81 changes: 57 additions & 24 deletions components/Homepage/Features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -415,14 +415,25 @@ function MainFeaturesMobile() {
</li>
</ul>

<video
className={`rounded-3xl border border-outline max-w-xl mx-auto w-full`}
src="./app/collect.mp4"
autoPlay
muted
loop
playsInline
></video>
<div className="relative">
<video
className={`rounded-3xl border border-outline max-w-xl mx-auto w-full z-10 relative`}
src="./app/collect.mp4"
autoPlay
muted
loop
playsInline
></video>
<div className="absolute top-0 bottom-0 right-0 left-0 flex items-center justify-center">
<div>
<div className="loader" id="loader-4">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
<div className="w-full flex flex-col gap-5">
<p className="lg:text-4xl text-3xl font-bold max-w-xl mx-auto w-full">
Expand Down Expand Up @@ -454,14 +465,25 @@ function MainFeaturesMobile() {
<p>Download your archived webpages.</p>
</li>
</ul>
<video
className={`rounded-3xl border border-outline max-w-xl mx-auto w-full`}
src="./app/preserve.mp4"
autoPlay
muted
loop
playsInline
></video>
<div className="relative">
<video
className={`rounded-3xl border border-outline max-w-xl mx-auto w-full z-10 relative`}
src="./app/preserve.mp4"
autoPlay
muted
loop
playsInline
></video>
<div className="absolute top-0 bottom-0 right-0 left-0 flex items-center justify-center">
<div>
<div className="loader" id="loader-4">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
<div className="w-full flex flex-col gap-5">
<p className="lg:text-4xl text-3xl font-bold max-w-xl mx-auto w-full">
Expand All @@ -483,14 +505,25 @@ function MainFeaturesMobile() {
<p>Easily share curated collections with the world.</p>
</li>
</ul>
<video
className={`rounded-3xl border border-outline max-w-xl mx-auto w-full`}
src="./app/collaborate.mp4"
autoPlay
muted
loop
playsInline
></video>
<div className="relative">
<video
className={`rounded-3xl border border-outline max-w-xl mx-auto w-full z-10 relative`}
src="./app/collaborate.mp4"
autoPlay
muted
loop
playsInline
></video>
<div className="absolute top-0 bottom-0 right-0 left-0 flex items-center justify-center">
<div>
<div className="loader" id="loader-4">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 6b11a55

Please sign in to comment.