31 lines
823 B
TypeScript
31 lines
823 B
TypeScript
import Link from "next/link";
|
|
import { Group, Text } from "@mantine/core";
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<Group
|
|
justify={"flex-end"}
|
|
align={"flex-end"}
|
|
h={"7vh"}
|
|
p={"md"}>
|
|
<Group gap={"xl"}>
|
|
<Link
|
|
href={"#"}
|
|
style={{
|
|
textDecoration: "none",
|
|
color: "inherit",
|
|
fontSize: 14,
|
|
}}>
|
|
Help and support
|
|
</Link>
|
|
<Group gap={5}>
|
|
<Text style={{ fontSize: 18 }}>©</Text>
|
|
<Text style={{ fontSize: 14 }}>2025, LogiDex</Text>
|
|
</Group>
|
|
</Group>
|
|
</Group>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|