Update copyright year and partnership text in the website footer

Modify the copyright text in `client/src/components/Footer.tsx` to reflect the year 2025 and reposition the "In partnership with Nostra" text to be on the same line as the copyright information.

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:49:05 +00:00
parent 7c2cfbe154
commit 92e33735f0

View File

@ -22,10 +22,13 @@ export default function Footer() {
</div>
</div>
{/* Copyright and Links */}
<div className="flex flex-col md:flex-row justify-between items-start md:items-center pt-3 border-t border-gray-700 mb-3">
{/* Copyright, Partnership and Links */}
<div className="flex flex-col md:flex-row justify-between items-start md:items-center pt-3 border-t border-gray-700">
<p className="text-xs text-gray-400 mb-2 md:mb-0" data-testid="copyright-text">
© 2007-2025 - SAPIENS Media Limited. All Rights Reserved.
© 2025 - SAPIENS AI Limited. All Rights Reserved.
</p>
<p className="text-xs text-gray-500 mb-2 md:mb-0" data-testid="partnership-text">
In partnership with Nostra
</p>
<div className="flex space-x-3">
<a href="#" className="text-xs text-gray-400 hover:text-white" data-testid="link-terms">Terms And Conditions</a>
@ -33,13 +36,6 @@ export default function Footer() {
<a href="#" className="text-xs text-gray-400 hover:text-white" data-testid="link-risk">Risk Warning</a>
</div>
</div>
{/* Partnership Information - Bottom Center */}
<div className="flex items-center justify-center">
<p className="text-xs text-gray-500" data-testid="partnership-text">
In partnership with Nostra
</p>
</div>
</div>
</footer>
);