Revise footer layout, removing classes section for a cleaner presentation
Removes the "Classes" section from the Footer component in `client/src/components/navigation/footer.tsx` and adjusts grid layout. Replit-Commit-Author: Agent Replit-Commit-Session-Id: d004b9e1-f9be-46e2-acda-f440ccd644a9 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/7b214f7a-642a-49b8-822f-5e5c474835c8.jpg
This commit is contained in:
parent
8cda541c4b
commit
12548732db
|
|
@ -62,7 +62,7 @@ export default function Footer() {
|
|||
return (
|
||||
<footer className="bg-teal text-white py-12">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div>
|
||||
<img
|
||||
src={SquareLogo}
|
||||
|
|
@ -131,36 +131,7 @@ export default function Footer() {
|
|||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="font-playfair font-bold text-lg mb-4 text-white">Classes</h3>
|
||||
<ul className="space-y-3">
|
||||
<li>
|
||||
<Link
|
||||
href="/classes"
|
||||
className="text-white text-opacity-70 hover:text-white hover:text-opacity-100 transition duration-300"
|
||||
>
|
||||
Mat Pilates
|
||||
</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link
|
||||
href="/classes"
|
||||
className="text-white text-opacity-70 hover:text-white hover:text-opacity-100 transition duration-300"
|
||||
>
|
||||
Reformer
|
||||
</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link
|
||||
href="/classes"
|
||||
className="text-white text-opacity-70 hover:text-white hover:text-opacity-100 transition duration-300"
|
||||
>
|
||||
Private Sessions
|
||||
</Link>
|
||||
</li>
|
||||
{/* Group Classes and Special Workshops removed */}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<h3 className="font-playfair font-bold text-lg mb-4 text-white">Contact</h3>
|
||||
|
|
|
|||
Loading…
Reference in New Issue