Spaces:
Sleeping
Sleeping
| import React from 'react' | |
| import AdityaLogo from '../assets/Aditya_f.png' | |
| export default function Footer() { | |
| return ( | |
| <div className='bg-black px-5 lg:px-28 py-3 lg:py-6 flex items-center justify-between mt-16'> | |
| <img className='h-12 lg:h-16' src={AdityaLogo} alt="Aditya Kumar Logo" /> | |
| <div className='text-white lg:font-semibold lg:text-sm font-normal text-[10px] text-right lg:space-y-3'> | |
| <p>@ 2025 Personal Portfolio</p> | |
| <p>Made by -Aditya Kumar</p> | |
| </div> | |
| </div> | |
| ) | |
| } | |