import { Row, Col } from "antd";
import { withTranslation } from "react-i18next";
import { SvgIcon } from "../../common/SvgIcon";
import Container from "../../common/Container";
import i18n from "i18next";
import {
FooterSection,
Title,
NavLink,
Extra,
LogoContainer,
Para,
Large,
Chat,
Empty,
FooterContainer,
Language,
Label,
LanguageSwitch,
LanguageSwitchContainer,
} from "./styles";
interface SocialLinkProps {
href: string;
src: string;
}
const Footer = ({ t }: any) => {
const handleChange = (language: string) => {
i18n.changeLanguage(language);
};
const SocialLink = ({ href, src }: SocialLinkProps) => {
return (
);
};
return (
<>
{t("Contact")}
{t("Tell us everything")}
{t(`Do you have any question? Feel free to reach out.`)}
{t(`Let's Chat`)}
{t("Policy")}
{t("Application Security")}
{t("Software Principles")}
{t("Support Center")}
{t("Customer Support")}
{t("Address")}
Rancho Santa Margarita
2131 Elk Street
California
{t("Company")}
{t("About")}
{t("Blog")}
{t("Press")}
{t("Careers & Culture")}
handleChange("en")}>
handleChange("es")}>
>
);
};
export default withTranslation()(Footer);