2024-06-20 13:59:27 +05:30
|
|
|
|
import { Box, Container, Text } from "@chakra-ui/react";
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
|
import { Link } from "react-router-dom";
|
2024-06-20 20:14:37 +05:30
|
|
|
|
import { IoLogoTwitter } from "react-icons/io5";
|
|
|
|
|
|
import { FaFacebookF } from "react-icons/fa6";
|
|
|
|
|
|
import { FaInstagram } from "react-icons/fa";
|
|
|
|
|
|
import { IoLogoGithub } from "react-icons/io";
|
2024-06-20 12:26:20 +05:30
|
|
|
|
|
|
|
|
|
|
const Footer = () => {
|
|
|
|
|
|
return (
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Box backgroundColor={"#0041180D"}>
|
|
|
|
|
|
<Container
|
2024-06-20 20:14:37 +05:30
|
|
|
|
p={10}
|
2024-06-20 13:59:27 +05:30
|
|
|
|
display={"flex"}
|
|
|
|
|
|
flexDirection={"column"}
|
|
|
|
|
|
maxW="container.xl"
|
|
|
|
|
|
>
|
|
|
|
|
|
<Box pb={4} pt={4} className=" w-100 border-bottom">
|
|
|
|
|
|
<Box as="span">
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Text as={"h4"} fontFamily={"Roca Two"} fontWeight={"bold"}>
|
|
|
|
|
|
Yes, it’s that simple.
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
<Text w={350} as={"h5"} fontFamily={"Roca Two"} fontWeight={"100"}>
|
|
|
|
|
|
Download the Tanami app today and start growing your wealth.
|
2024-06-20 13:59:27 +05:30
|
|
|
|
</Text>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
2024-06-20 12:26:20 +05:30
|
|
|
|
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Box pb={4} pt={8} className=" w-100 border-bottom">
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Box display={"flex"}>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Box w={"50%"} display={"flex"} flexDirection={"column"} gap={3}>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Text as={"h6"}>About Tanami</Text>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Text
|
|
|
|
|
|
w={"60%"}
|
|
|
|
|
|
mt={2}
|
|
|
|
|
|
as={"p"}
|
|
|
|
|
|
fontSize={"sm"}
|
|
|
|
|
|
color={"gray.600"}
|
|
|
|
|
|
>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam
|
|
|
|
|
|
dictum aliquet accumsan porta lectus ridiculus in mattis. Netus
|
|
|
|
|
|
sodales in volutpat ullamcorper amet adipiscing fermentum.
|
|
|
|
|
|
</Text>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Box display={"flex"} gap={8}>
|
|
|
|
|
|
<IoLogoTwitter />
|
|
|
|
|
|
<FaFacebookF />
|
|
|
|
|
|
<FaInstagram />
|
|
|
|
|
|
<IoLogoGithub />
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
<Text as={"span"} fontSize={"sm"}>
|
|
|
|
|
|
info@tanamicapital.com
|
|
|
|
|
|
</Text>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
</Box>
|
|
|
|
|
|
<Box w={"15%"}>
|
|
|
|
|
|
<Text as={"h6"}>Company</Text>
|
|
|
|
|
|
<Box display={"flex"} flexDirection={"column"} gap={1} mt={6}>
|
|
|
|
|
|
<Link to={"/"}>
|
|
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
Home
|
|
|
|
|
|
</Text>{" "}
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
<Link to={"investment"}>
|
|
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
Investment
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
<Link to={"investment"}>
|
|
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
How it works
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
<Link to={"investment"}>
|
|
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
FAQ's
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Box w={"10%"}>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Text as={"h6"}>Help</Text>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Box display={"flex"} flexDirection={"column"} gap={1} mt={6}>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Link to={"/aboutus"}>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
About Us
|
2024-06-20 13:59:27 +05:30
|
|
|
|
</Text>{" "}
|
|
|
|
|
|
</Link>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Link to={"/contact-us"}>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
Investment
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Link>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Link to={"/privacy-policy"}>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
How it works
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Link>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
<Link to={"/teams-of-service"}>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
<Text fontSize={"sm"} as={"span"}>
|
|
|
|
|
|
FAQ's
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
</Box>
|
2024-06-20 20:14:37 +05:30
|
|
|
|
|
|
|
|
|
|
<Box display={"flex"} justifyContent={"space-between"} mt={3}>
|
|
|
|
|
|
<Text as={"span"} fontSize={"sm"} fontWeight={500}>
|
|
|
|
|
|
Copyright © 2024 Tanami Capital
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
<Text as={"span"} fontSize={"sm"} fontWeight={500}>
|
|
|
|
|
|
Tanami Capital is authorized to participate in the Central Bank of
|
|
|
|
|
|
Bahrain’s Fintench Regualatory Sandbox
|
|
|
|
|
|
</Text>
|
|
|
|
|
|
</Box>
|
2024-06-20 13:59:27 +05:30
|
|
|
|
</Container>
|
|
|
|
|
|
</Box>
|
|
|
|
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default Footer;
|