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 ( +
+ + Craig Macfadyen + + + + + + + + + + + + +
+ ); +} \ No newline at end of file diff --git a/frontend/vite-template-master/src/pages/Home.page.tsx b/frontend/vite-template-master/src/pages/Home.page.tsx index bb3d66e..9f6f7c0 100644 --- a/frontend/vite-template-master/src/pages/Home.page.tsx +++ b/frontend/vite-template-master/src/pages/Home.page.tsx @@ -4,6 +4,7 @@ import { HeaderSimple } from '@/components/HeaderSimple/HeaderSimple'; import { HeroTitle } from '@/components/HeroTitle/HeroTitle'; import Testimonial from '@/components/Testimonial/Testimonial'; import { FeaturesCards } from '@/components/FeatureCards/FeatureCards'; +import { FooterSocial } from '@/components/FooterSocial/FooterSocial'; export function HomePage() { return ( @@ -15,6 +16,7 @@ export function HomePage() { + ); }