Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

147 lines
3.1 KiB
React

import React from "react";
import Link from "next/link";
import Image from "next/image";
const linksFooterContent = [
{
itemName: "Home",
routePath: "/",
},
{
itemName: "Product",
routePath: "/product-customer-support",
},
{
itemName: "Pricing",
routePath: "/pricing-pm",
},
{
itemName: "About us",
routePath: "/about-pm",
},
{
itemName: "Features",
routePath: "/solution-management",
},
{
itemName: "Blog",
routePath: "/blog-v4",
},
{
itemName: "Help & Support",
routePath: "/login",
},
{
itemName: "API documentation",
routePath: "/doc-full-width",
},
];
const legalFooterContent = [
{
itemName: "Terms of use",
routePath: "/terms-conditions",
},
{
itemName: "Terms & conditions",
routePath: "/terms-conditions",
},
{
itemName: "Privacy policy",
routePath: "/terms-conditions",
},
{
itemName: "Cookie policy",
routePath: "",
},
];
const productsFooterContent = [
{
itemName: "Take the tour",
routePath: "/product-customer-support",
},
{
itemName: "Team",
routePath: "/team-5",
},
{
itemName: "Self Service",
routePath: "/features-customer-support",
},
{
itemName: "News",
routePath: "/blog-v3",
},
{
itemName: "About us",
routePath: "/about-doc",
},
{
itemName: "Contact",
routePath: "/contact-cs",
},
];
const FooterFour = () => {
return (
<div className="row justify-content-end">
<div className="col-xl-4 col-lg-3 col-12 footer-about-widget">
<div className="logo">
<Link href="/">
<Image width={136}
height={43} src="/images/logo/deski_05.svg" alt="brand" />
</Link>
</div>
<ul className="font-rubik mt-10">
<li>
<a href="mailto:deskiinc@gmail.com">deskiinc@gmail.com</a>
</li>
<li>
<a href="tel:+761 412 3224">+761 412 3224</a>
</li>
</ul>
</div>
{/* /.footer-list */}
<div className="col-lg-3 col-md-4 footer-list">
<h5 className="footer-title font-slab">Links</h5>
<ul>
{linksFooterContent.map((list, i) => (
<li key={i}>
<Link href={list.routePath}>{list.itemName}</Link>
</li>
))}
</ul>
</div>
{/* /.footer-list */}
<div className="col-lg-3 col-md-4 footer-list">
<h5 className="footer-title font-slab">Legal</h5>
<ul>
{legalFooterContent.map((list, i) => (
<li key={i}>
<Link href={list.routePath}>{list.itemName}</Link>
</li>
))}
</ul>
</div>
{/* /.footer-list */}
<div className="col-xl-2 col-lg-3 col-md-4 footer-list">
<h5 className="footer-title font-slab">Products</h5>
<ul className="pe-5">
{productsFooterContent.map((list, i) => (
<li key={i}>
<Link href={list.routePath}>{list.itemName}</Link>
</li>
))}
</ul>
</div>
{/* /.footer-list */}
</div>
);
};
export default FooterFour;