54 lines
2.5 KiB
TypeScript
54 lines
2.5 KiB
TypeScript
import Link from 'next/link';
|
|
import Image from 'next/image';
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="ux-main-footer">
|
|
<div className="container">
|
|
<div className="ux-footer-grid">
|
|
<div className="ux-footer-left">
|
|
<Link href="/"><Image src="/assets/images/footerlogo.png" alt="Logo" width={120} height={40} /></Link>
|
|
<p className="ux-footer-desc">
|
|
We build digital homes, brand systems, and scalable
|
|
content engines designed for clarity and growth.
|
|
Everything is structured to help fast
|
|
</p>
|
|
</div>
|
|
|
|
<div className="ux-footer-right">
|
|
<div className="ux-footer-links">
|
|
<h6>POPULAR</h6>
|
|
<Link href="/work">Work</Link>
|
|
<Link href="/services">Services</Link>
|
|
<Link href="/about">About</Link>
|
|
</div>
|
|
<div className="ux-footer-links">
|
|
<h6>HELP</h6>
|
|
<Link href="/process">Process</Link>
|
|
<Link href="/start_project">Start a Project</Link>
|
|
<Link href="/contact">Contact</Link>
|
|
</div>
|
|
<div className="ux-footer-links">
|
|
<h6>LEGAL</h6>
|
|
<Link href="/terms">Terms and Conditions</Link>
|
|
<Link href="/privacy">Privacy Policy</Link>
|
|
<Link href="/faq">FAQ's</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="ux-footer-bottom">
|
|
<p>© 2026 AAideA by Insignia Consultancy Solutions. All rights reserved.</p>
|
|
<div className="ux-footer-social">
|
|
<a href="https://facebook.com" target="_blank" rel="noopener noreferrer"><Image src="/assets/images/facebook.svg" alt="facebook" width={20} height={20} /></a>
|
|
<a href="https://linkedin.com" target="_blank" rel="noopener noreferrer"><Image src="/assets/images/linkdien.svg" alt="linkedin" width={20} height={20} /></a>
|
|
<a href="https://instagram.com" target="_blank" rel="noopener noreferrer"><Image src="/assets/images/instagram.svg" alt="instagram" width={20} height={20} /></a>
|
|
<a href="https://twitter.com" target="_blank" rel="noopener noreferrer"><Image src="/assets/images/twitter.svg" alt="twitter" width={20} height={20} /></a>
|
|
<a href="https://youtube.com" target="_blank" rel="noopener noreferrer"><Image src="/assets/images/youtube.svg" alt="youtube" width={20} height={20} /></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|