Adjust spacing in the footer component for better visual hierarchy

Update the padding on the copyright notice and reduce padding on the logo/contact section within the Footer component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 930e9607-8d85-4ad9-8702-a48ff4cef074
Replit-Commit-Checkpoint-Type: full_checkpoint
This commit is contained in:
kimjaehyeon0101
2025-10-15 10:43:18 +00:00
parent 0f6d8b4eca
commit 666ae41de6

View File

@ -5,9 +5,9 @@ export default function Footer() {
return ( return (
<footer className="fixed bottom-0 left-0 right-0 bg-gray-900 border-t border-gray-700 z-40"> <footer className="fixed bottom-0 left-0 right-0 bg-gray-900 border-t border-gray-700 z-40">
<div className="max-w-7xl mx-auto px-4 py-2"> <div className="max-w-7xl mx-auto px-4">
{/* Logo and Social Icons */} {/* Logo and Social Icons */}
<div className="flex items-center justify-between mb-2"> <div className="flex items-center justify-between py-1">
<div className="flex items-center"> <div className="flex items-center">
<img <img
src="/attached_assets/sapiens_white_logo.png" src="/attached_assets/sapiens_white_logo.png"
@ -25,7 +25,7 @@ export default function Footer() {
</div> </div>
{/* Copyright, Partnership and Links */} {/* Copyright, Partnership and Links */}
<div className="flex flex-col md:flex-row justify-between items-start md:items-center pt-2 border-t border-gray-700"> <div className="flex flex-col md:flex-row justify-between items-start md:items-center py-6 border-t border-gray-700">
<p className="text-xs text-gray-400 mb-2 md:mb-0" data-testid="copyright-text"> <p className="text-xs text-gray-400 mb-2 md:mb-0" data-testid="copyright-text">
© 2025 - SAPIENS AI Limited. All Rights Reserved. © 2025 - SAPIENS AI Limited. All Rights Reserved.
</p> </p>