Update social media icons to reflect current branding

Replace the Twitter icon with the X icon in the footer component and update the corresponding test ID.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/LZrXNFV
This commit is contained in:
kimjaehyeon0101
2025-09-29 17:36:44 +00:00
parent e6346c2854
commit 2ff367b70b

View File

@ -1,4 +1,4 @@
import { Facebook, Twitter } from "lucide-react"; import { Facebook, X } from "lucide-react";
import logoBlack from "@assets/logo_black_1759165229646.png"; import logoBlack from "@assets/logo_black_1759165229646.png";
export default function Footer() { export default function Footer() {
@ -17,7 +17,7 @@ export default function Footer() {
</div> </div>
<div className="flex items-center space-x-4"> <div className="flex items-center space-x-4">
<Facebook className="w-5 h-5 text-gray-600 hover:text-gray-900 cursor-pointer" data-testid="social-facebook" /> <Facebook className="w-5 h-5 text-gray-600 hover:text-gray-900 cursor-pointer" data-testid="social-facebook" />
<Twitter className="w-5 h-5 text-gray-600 hover:text-gray-900 cursor-pointer" data-testid="social-twitter" /> <X className="w-5 h-5 text-gray-600 hover:text-gray-900 cursor-pointer" data-testid="social-x" />
</div> </div>
</div> </div>