feat: full screen form for mobile

This commit is contained in:
2025-07-18 15:06:50 +04:00
parent e033938a03
commit 964641a58d
11 changed files with 71 additions and 12 deletions

View File

@ -0,0 +1,30 @@
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;