Remove the studio logo from the footer to streamline the site's appearance
Remove the `SquareLogo` import and logo component from `footer.tsx`. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 88cd88e4-2dbe-4df6-8c8a-7e38f13ef1ec Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/e32e73f5-f2d7-4efb-aa81-1ca133f29553.jpg
This commit is contained in:
parent
65bad8c354
commit
000fe7ff9d
|
|
@ -1,6 +1,5 @@
|
||||||
import { Logo } from "@/components/ui/logo";
|
import { Logo } from "@/components/ui/logo";
|
||||||
import { Link } from "wouter";
|
import { Link } from "wouter";
|
||||||
import SquareLogo from "../../assets/square-logo.png";
|
|
||||||
|
|
||||||
export default function Footer() {
|
export default function Footer() {
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
|
|
@ -146,14 +145,6 @@ export default function Footer() {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="border-t border-white border-opacity-20 mt-12 pt-8">
|
<div className="border-t border-white border-opacity-20 mt-12 pt-8">
|
||||||
<div className="flex flex-col items-center justify-center mb-6">
|
|
||||||
<img
|
|
||||||
src={SquareLogo}
|
|
||||||
alt="Pilates with Fadia"
|
|
||||||
className="h-24 mb-4"
|
|
||||||
style={{ filter: "brightness(1.1)" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col md:flex-row justify-between items-center">
|
<div className="flex flex-col md:flex-row justify-between items-center">
|
||||||
<p className="text-white text-opacity-70 text-sm mb-4 md:mb-0">
|
<p className="text-white text-opacity-70 text-sm mb-4 md:mb-0">
|
||||||
© {currentYear} Pilates with Fadia. All rights reserved.
|
© {currentYear} Pilates with Fadia. All rights reserved.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue