Skip to content

Commit

Permalink
issue number #440 is solved (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hemraj-7 authored Nov 9, 2024
1 parent b4726ad commit cfcf828
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 24 deletions.
13 changes: 0 additions & 13 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions frontend/src/Components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,30 +109,30 @@ const Footer = () => {
<div className="container mx-auto flex flex-wrap sm:flex-nowrap justify-evenly items-start px-5">

{/* Brand, Description, and Links */}
<div className="flex flex-col text-red-700 space-y-4 w-full sm:w-2/4 lg:w-2/4 ml-2 mt-6 mr-8">
<div className="flex flex-col text-red-700 space-y-4 w-full sm:w-2/4 lg:w-2/4 ml-0 lg:ml-2 mt-6 mr-8">
<h1 className="text-xl font-bold">TastyTrails</h1>
<p className="text-sm text-gray-500 leading-relaxed">
<p className="text-sm text-gray-500 leading-relaxed ml-1 lg:ml-0">
TastyTrails is more than just recipes — it’s a vibrant social network where food lovers can connect, discover, and share the unique flavors of their cultures. A platform for passionate food enthusiasts to dive into a world of tastes!
</p>
</div>

<div className="flex flex-col text-gray-600 sm:ml-8 w-full sm:w-1/4 lg:w-1/4 mt-6">
<ul className="space-y-1">
<h2 className="font-semibold text-gray-900 mb-2">About</h2>
<li><a href="/privacy-policy">Privacy Policy</a></li>
<li><a href="/contributors">Contributors</a></li>
<li className="ml-1 lg:ml-0"><a href="/privacy-policy">Privacy Policy</a></li>
<li className="ml-1 lg:ml-0"><a href="/contributors">Contributors</a></li>
</ul>
</div>

{/* Categories Section */}
<div className="flex flex-col text-gray-600 sm:ml-8 w-full sm:w-1/4 lg:w-1/4 mt-6">
<ul className="space-y-1">
<h2 className="font-semibold text-gray-900 mb-2">Links</h2>
<li><a href="/recipes">Recipes</a></li>
<li><a href="/mainmeals">Main Meal</a></li>
<li><a href="/smallbites">Small Bites</a></li>
<li><a href="/healthy">Healthy</a></li>
<li><a href="/recipe-suggestions">Recipe Bot</a></li>
<li className="ml-1 lg:ml-0"><a href="/recipes">Recipes</a></li>
<li className="ml-1 lg:ml-0"><a href="/mainmeals">Main Meal</a></li>
<li className="ml-1 lg:ml-0"><a href="/smallbites">Small Bites</a></li>
<li className="ml-1 lg:ml-0"><a href="/healthy">Healthy</a></li>
<li className="ml-1 lg:ml-0"><a href="/recipe-suggestions">Recipe Bot</a></li>
</ul>
</div>

Expand All @@ -145,7 +145,7 @@ const Footer = () => {
{/* Social Links and Feedback */}
<div className="flex flex-col text-gray-700 mt-6 w-full sm:w-1/4 lg:w-1/4">
<h2 className="font-semibold text-gray-900 mb-2">Connect</h2>
<div className="flex items-center space-x-4">
<div className="flex items-center space-x-4 ml-1 lg:ml-0">
<Link to="https://www.instagram.com/alfiya.17.siddiq/" className="text-2xl text-red-700 hover:text-red-500">
<FontAwesomeIcon icon={faInstagramSquare} />
</Link>
Expand All @@ -158,7 +158,7 @@ const Footer = () => {
</div>
<button
onClick={openModal}
className="mt-4 py-2 px-2 inline-block bg-transparent border border-red-700 text-red-700 rounded hover:bg-red-700 hover:text-white transition-all duration-200 max-w-[8rem] "
className="mt-4 py-2 px-2 inline-block bg-transparent border border-red-700 text-red-700 rounded hover:bg-red-700 hover:text-white transition-all duration-200 max-w-[8rem] ml-1 lg:ml-0"
>
Feedback
</button>
Expand Down

0 comments on commit cfcf828

Please sign in to comment.