"use client";
import React from "react";
import Image from "next/image";
import FooterSocials from "./FooterSocial";
import { footerLinks, navigationLinks } from "@/data/footer";
export default function Footer() {
const scrollToTop = (event: any) => {
event.preventDefault();
window.scrollTo({
top: 0,
behavior: "smooth", // Linear easing replacement
});
};
return (
<>
{/* Footer Widget */}
{/* End Footer Widget */}
{/* Footer Widget */}
{/* End Footer Widget */}
{/* Footer Widget */}
Legal & Press
{footerLinks.map((elm: any, i: number) => (
-
{elm.name}
))}
{/* End Footer Widget */}
{/* Footer Text */}
© {new Date().getFullYear()} All Rights Reserved
{/* Back to Top Link */}
{/* End Back to Top Link */}
{/* End Footer Text */}
>
);
}