feat: full screen form for mobile
This commit is contained in:
30
components/Footer/Footer.tsx
Normal file
30
components/Footer/Footer.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user