Update social media icons to reflect company branding changes

Replace the 'X' icon from 'lucide-react' with 'SiX' from 'react-icons/si' in the footer component to align with the company's rebranding to 'X'.

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:42:19 +00:00
parent ccc629cba7
commit 43a054b020

View File

@ -1,4 +1,5 @@
import { Facebook, X } from "lucide-react"; import { Facebook } from "lucide-react";
import { SiX } from "react-icons/si";
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 +18,7 @@ export default function Footer() {
</div> </div>
<div className="flex items-center space-x-2"> <div className="flex items-center space-x-2">
<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" />
<X className="w-5 h-5 text-gray-600 hover:text-gray-900 cursor-pointer" data-testid="social-x" /> <SiX className="w-5 h-5 text-gray-600 hover:text-gray-900 cursor-pointer" data-testid="social-x" />
</div> </div>
</div> </div>