generated from 202306-NEA-DZ-FEW/capstone-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from 202306-NEA-DZ-FEW/dev
Dev
- Loading branch information
Showing
26 changed files
with
438 additions
and
67 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 was deleted.
Oops, something went wrong.
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,92 @@ | ||
import React from "react"; | ||
|
||
import Button from "../button/Button"; | ||
|
||
function BrowseSection() { | ||
return ( | ||
<section className='py-10'> | ||
<div className='container mx-auto'> | ||
<div className='-mx-4 flex flex-wrap'> | ||
<div className='w-full px-4 lg:w-8/12'> | ||
<div className='relative mb-8 h-[370px] md:h-[480px]'> | ||
<img | ||
src='images/home-page/browse-1.avif' | ||
alt='product' | ||
className='h-full w-full object-cover object-center rounded-lg' | ||
/> | ||
|
||
<div className='absolute top-0 left-0 flex h-full w-full items-center px-8 md:px-12'> | ||
<div className='max-w-[420px]'> | ||
<h3 className='mb-4 text-6xl font-semibold text-black'> | ||
Elevate Your Space ! | ||
</h3> | ||
<p className='mb-10 text-base font-light text-black'> | ||
Lorem ipsum dolor sit amet, consectetur | ||
adipiscing elit. Vestibulum ornare | ||
vestibulum mollis. Nam vitae augue | ||
purus. Integer ac accumsan nunc. | ||
</p> | ||
<Button href='/products/?category='> | ||
browse products | ||
</Button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className='w-full px-4 lg:w-4/12'> | ||
<div className='-mx-4 flex flex-wrap'> | ||
<div className='w-full px-4 md:w-1/2 lg:w-full rounded-lg'> | ||
<div className='relative mb-8 h-[223px]'> | ||
<img | ||
src='images/home-page/browse-2.avif' | ||
alt='product' | ||
className='h-full w-full object-cover object-center rounded-lg' | ||
/> | ||
|
||
<div className='absolute top-0 left-0 flex h-full w-full items-end justify-end p-6 sm:p-9 bg-black/40'> | ||
<div className='max-w-[180px] text-right flex flex-col justify-end items-end'> | ||
<h3 className='mb-3 block text-lg font-bold text-white xs:text-xl sm:text-2xl lg:text-xl xl:text-2xl'> | ||
Student Electronic Collection | ||
</h3> | ||
<Button | ||
href='/products/?category=' | ||
className='bg-transparent text-white border border-white ' | ||
> | ||
Discover Now | ||
</Button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className='w-full px-4 md:w-1/2 lg:w-full rounded-lg'> | ||
<div className='relative mb-8 h-[223px]'> | ||
<img | ||
src='images/home-page/browse-3.avif' | ||
alt='product' | ||
className='h-full w-full object-cover object-center rounded-lg' | ||
/> | ||
|
||
<div className='absolute top-0 left-0 flex h-full w-full items-end justify-end p-6 sm:p-9 bg-black/10'> | ||
<div className='max-w-[180px] text-right flex flex-col justify-end items-end'> | ||
<h3 className='mb-3 block text-lg font-bold text-white xs:text-xl sm:text-2xl lg:text-xl xl:text-2xl'> | ||
Summer Travel Collection | ||
</h3> | ||
<Button | ||
href='/products/?category=' | ||
className=' text-white border border-white bg-black/40 ' | ||
> | ||
Discover Now | ||
</Button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} | ||
|
||
export default BrowseSection; |
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,45 @@ | ||
import React from "react"; | ||
|
||
function CompaniesSection() { | ||
return ( | ||
<div className='flex flex-col justify-center my-40'> | ||
<div className='text-xl text-center text-black/80 '> | ||
Trusted by <span className='text-green'>6+</span> customers | ||
worldwide | ||
</div> | ||
|
||
<div className='flex flex-wrap justify-center gap-5 mt-10 md:justify-around'> | ||
<img | ||
src='/images/home-page/recoded-logo.png' | ||
alt='Recoded logo' | ||
className='w-40' | ||
/> | ||
<img | ||
src='/images/home-page/recoded-logo.png' | ||
alt='Recoded logo' | ||
className='w-40' | ||
/> | ||
|
||
<img | ||
src='/images/home-page/recoded-logo.png' | ||
alt='Recoded logo' | ||
className='w-40' | ||
/> | ||
|
||
<img | ||
src='/images/home-page/recoded-logo.png' | ||
alt='Recoded logo' | ||
className='w-40' | ||
/> | ||
|
||
<img | ||
src='/images/home-page/recoded-logo.png' | ||
alt='Recoded logo' | ||
className='w-40' | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default CompaniesSection; |
Oops, something went wrong.
be8d3e6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
letshare – ./
letshare-team-f-8322dad9.vercel.app
letshare-iota.vercel.app
letshare-git-main-team-f-8322dad9.vercel.app