File size: 534 Bytes
36fcfee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
  )
}