1- export default function BottomFooter ( ) {
2- const paymentLogos = [ ] ;
1+ import { FaRegCopyright } from 'react-icons/fa6' ;
32
3+ export default function BottomFooter ( ) {
44 return (
5- < footer className = "bg-[#071827] text-neutral-200" >
5+ < footer className = "bg-[#071827] text-neutral-200 " >
66 { /* Top disclaimer bar */ }
7- < div className = "max-w-7xl mx-auto px-6 py-6 text-center text-sm text-neutral-200/90" >
7+ < div className = "max-w-7xl mx-auto px-5 md:px-0 py-6 text-center text-sm text-neutral-200/90" >
88 < p className = "max-w-4l mx-auto" >
99 **The Food and Drug Administration has not evaluated these statements.
1010 This product is not meant to diagnose, treat, cure, or prevent any
@@ -13,13 +13,13 @@ export default function BottomFooter() {
1313 </ div >
1414
1515 { /* Bottom footer area */ }
16- < div className = "max-w-7xl mx-auto px-6 py-12 border-t border-neutral-800" >
17- < div className = "flex flex-col md:flex-row md:items-start md:justify-between gap-10 " >
16+ < div className = "max-w-7xl mx-auto px-5 md:px-0 py-12 border-t border-neutral-800" >
17+ < div className = "flex flex-col md:flex-row items-center md:items-start md:justify-between" >
1818 { /* Left block: copyright + powered by + links */ }
1919 < div className = "flex-1" >
20- < div className = "mb-6" >
21- < p className = "text-xl md:text-xl leading-tight font-bold" >
22- © 2025 { ' ' }
20+ < div className = "mb-6 self-center " >
21+ < p className = "text-xl md:text-xl leading-tight font-bold flex items-center gap-2 " >
22+ < FaRegCopyright /> { new Date ( ) . getFullYear ( ) } { ' ' }
2323 < span className = "font-black" >
2424 Core< span className = "text-red-500" > X</ span > Nutrition
2525 </ span >
@@ -38,34 +38,33 @@ export default function BottomFooter() {
3838 </ span >
3939 </ div >
4040
41- < div className = "flex flex-wrap gap-6 text-base text-neutral-300" >
42- < a href = "/return-policy" className = "link-underline text-sm" >
41+ < div className = "flex flex-wrap align-center gap-4 text-base text-neutral-300" >
42+ < a
43+ href = "/return-policy"
44+ className = "link-underline text-[12px] md:text-sm"
45+ >
4346 Refund policy
4447 </ a >
45- < a href = "/privacy-policy" className = "link-underline text-sm" >
48+ < a
49+ href = "/privacy-policy"
50+ className = "link-underline text-[12px] md:text-sm"
51+ >
4652 Privacy policy
4753 </ a >
48- < a href = "/terms-of-service" className = "link-underline text-sm" >
54+ < a
55+ href = "/terms-of-service"
56+ className = "link-underline text-[12px] md:text-sm"
57+ >
4958 Terms of service
5059 </ a >
51- < a href = "/shipping-policy" className = "link-underline text-sm" >
60+ < a
61+ href = "/shipping-policy"
62+ className = "link-underline text-[12px] md:text-sm"
63+ >
5264 Shipping policy
5365 </ a >
5466 </ div >
5567 </ div >
56-
57- { /* Right block: payment icons */ }
58- < div className = "flex items-center justify-end gap-4" >
59- { paymentLogos . length > 0 &&
60- paymentLogos . map ( ( logo ) => (
61- < img
62- src = { logo . src }
63- alt = { logo . name }
64- className = "h-6 w-auto object-contain bg-white rounded-sm p-1"
65- loading = "lazy"
66- />
67- ) ) }
68- </ div >
6968 </ div >
7069 </ div >
7170 </ footer >
0 commit comments