From 45979258bafeade6e2b504f525f40909c7271ca0 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Fri, 29 Aug 2025 13:16:47 +0800 Subject: [PATCH] Added footer component --- fwt/components/Footer/Footer.sass | 8 ++++++++ fwt/components/Footer/Footer.tsx | 13 +++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 fwt/components/Footer/Footer.sass create mode 100644 fwt/components/Footer/Footer.tsx diff --git a/fwt/components/Footer/Footer.sass b/fwt/components/Footer/Footer.sass new file mode 100644 index 0000000..2d87966 --- /dev/null +++ b/fwt/components/Footer/Footer.sass @@ -0,0 +1,8 @@ +.footer + padding: 1rem 0 + margin: 0 20rem + position: fixed + bottom: 0 + width: 100% + font-size: 0.75rem + opacity: 0.8 diff --git a/fwt/components/Footer/Footer.tsx b/fwt/components/Footer/Footer.tsx new file mode 100644 index 0000000..ca71e92 --- /dev/null +++ b/fwt/components/Footer/Footer.tsx @@ -0,0 +1,13 @@ +import './Footer.sass' + +interface Props { + children: any +} + +export default (props: Props) => { + return ( + <> + + + ) +}