Skip to content

Commit

Permalink
styling footer
Browse files Browse the repository at this point in the history
  • Loading branch information
goldipl committed Feb 10, 2024
1 parent 27584c0 commit f1cb1a0
Showing 1 changed file with 61 additions and 6 deletions.
67 changes: 61 additions & 6 deletions components/Footer.tsx
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;

0 comments on commit f1cb1a0

Please sign in to comment.