-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 changed file
with
61 additions
and
6 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,11 +1,66 @@ | ||
import React from 'react' | ||
import React from "react"; | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className='max-container padding-container py-10'> | ||
Travel Website 2024 | ||
<div className="bg-black text-white padding-container py-10 w-[100vw] flex justify-center lg:justify-between"> | ||
<div className="max-container flex items-center lg:items-start w-full lg:flex-row flex-col justify-center lg:justify-between"> | ||
<div className="flex-col"> | ||
<a href="/"className="flex justify-center"> | ||
<img | ||
className="lg:w-[120px] h-auto w-[60px] m-6" | ||
src="/_next/static/media/logo.5c571377.png" | ||
alt="logo" | ||
width="150" | ||
height="143" | ||
></img> | ||
</a> | ||
<p>© 2024 Travel Website</p> | ||
</div> | ||
<div className="flex-col mb-4"> | ||
<h3 className="uppercase text-lg mb-4">Navigation</h3> | ||
<ul> | ||
<li className="text-center"> | ||
<a className="text-sm" href="#about_us"> | ||
About Us | ||
</a> | ||
</li> | ||
<li className="text-center"> | ||
<a className="text-sm" href="#how_we_work"> | ||
How We Work? | ||
</a> | ||
</li> | ||
<li className="text-center"> | ||
<a className="text-sm" href="#gallery"> | ||
Gallery | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div className="flex-col mb-4"> | ||
<h3 className="uppercase text-lg mb-4">Discounts</h3> | ||
<ul> | ||
<li className="text-center"> | ||
<a className="text-sm" href="/"> | ||
Read more | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div className="flex-col text-center"> | ||
<h3 className="uppercase text-lg mb-4">Social Media</h3> | ||
<a href="#"> | ||
<i className='bx bxl-facebook-square mx-1'></i> | ||
</a> | ||
<a href="#"> | ||
<i className='bx bxl-instagram mx-1'></i> | ||
</a> | ||
<a href="#"> | ||
<i className='bx bxl-linkedin-square mx-1'></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default Footer | ||
export default Footer; |