diff --git a/client/src/components/generic/Footer/Footer.tsx b/client/src/components/generic/Footer/Footer.tsx index 87c9fbe48..91e460132 100644 --- a/client/src/components/generic/Footer/Footer.tsx +++ b/client/src/components/generic/Footer/Footer.tsx @@ -4,54 +4,64 @@ import Facebook from "assets/icons/facebook.svg?react" import Instagram from "assets/icons/instagram.svg?react" -const HorizontalDivider = () => +const HorizontalDivider = () => ( + <> + + +) export const Footer = () => { return ( -
+
COPYRIGHT {new Date().getFullYear()} University of Auckland Snowsports Club
-
+
- -
About
+ +
log in
- -
faq
+ +
register
- -
contact us
+ +
book the lodge
- -
policy
+ +
about
-
- +
+
- +
- +
- +
) diff --git a/client/src/pages/About.tsx b/client/src/pages/About.tsx index ff8514389..28ce552f3 100644 --- a/client/src/pages/About.tsx +++ b/client/src/pages/About.tsx @@ -3,6 +3,7 @@ import AboutSection from "components/generic/AboutSection/AboutSection" import ImageLeft from "assets/images/lodge.jpg" import ImageRight from "assets/images/people.jpg" import ImageBottom from "assets/images/view.jpg" +import { Footer } from "components/generic/Footer/Footer" const About = () => { return ( @@ -37,6 +38,7 @@ const About = () => { imageSrc={ImageBottom} >
+
) }