diff --git a/frontend/vite-template-master/src/components/FooterSocial/FooterSocial.module.css b/frontend/vite-template-master/src/components/FooterSocial/FooterSocial.module.css new file mode 100644 index 0000000..96ed223 --- /dev/null +++ b/frontend/vite-template-master/src/components/FooterSocial/FooterSocial.module.css @@ -0,0 +1,22 @@ +.footer { + margin-top: 120px; + border-top: 1px solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5)); + } + + .inner { + display: flex; + justify-content: space-between; + align-items: center; + padding-top: var(--mantine-spacing-xl); + padding-bottom: var(--mantine-spacing-xl); + + @media (max-width: $mantine-breakpoint-xs) { + flex-direction: column; + } + } + + .links { + @media (max-width: $mantine-breakpoint-xs) { + margin-top: var(--mantine-spacing-md); + } + } \ No newline at end of file diff --git a/frontend/vite-template-master/src/components/FooterSocial/FooterSocial.tsx b/frontend/vite-template-master/src/components/FooterSocial/FooterSocial.tsx new file mode 100644 index 0000000..6b34824 --- /dev/null +++ b/frontend/vite-template-master/src/components/FooterSocial/FooterSocial.tsx @@ -0,0 +1,25 @@ +import { FaGithub, FaLinkedin } from 'react-icons/fa'; +import { SiGitea } from 'react-icons/si'; +import { ActionIcon, Container, Group, Text } from '@mantine/core'; +import classes from './FooterSocial.module.css'; + +export function FooterSocial() { + return ( +