change search to recording

This commit is contained in:
ameer2468
2024-09-18 23:09:56 +03:00
parent 6b813051c1
commit dd4ee0419b
3 changed files with 10 additions and 16 deletions

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 675 KiB

After

Width:  |  Height:  |  Size: 299 KiB

View File

Binary file not shown.

View File

@@ -1,5 +1,3 @@
import React from 'react';
export const Search = () => {
return (
<section className="container mx-auto flex w-full flex-col flex-wrap items-start overflow-hidden">
@@ -9,20 +7,16 @@ export const Search = () => {
Find what youre looking for with ease using advanced filters.
</span>
</h2>
<div className="video-container max-size-[500px] mx-auto mb-20 flex w-full justify-center overflow-visible md:mb-0 md:h-auto md:w-full lg:max-h-[1000px] lg:max-w-[1400px]">
<div className="video-wrapper ml-10 mt-16 overflow-hidden sm:ml-16 md:ml-40 md:h-[700px] lg:ml-56 lg:mt-0 lg:h-[600px] xl:h-[860px]">
<div className="absolute left-20 top-16 z-10 size-[300px] rounded-full bg-white opacity-30 mix-blend-overlay blur-[35px]" />
<div className="absolute left-52 top-24 h-[400px] w-[300px] rounded-full bg-gradient-to-t from-indigo-300 to-fuchsia-300 opacity-40 mix-blend-overlay blur-[25px] md:top-0 md:blur-[45px] lg:top-12" />
<video
className="h-auto w-full rounded-[10px] border border-indigo-500/30"
autoPlay
playsInline
muted
controls={false}
loop
src="/videos/Spacedrive_search.webm"
/>
</div>
<div className="mt-4 p-4">
<video
className="h-auto w-full rounded-xl border border-indigo-500/30"
autoPlay
playsInline
muted
controls={false}
loop
src="/videos/Spacedrive_search.webm"
/>
</div>
</section>
);