From 9952654af1423f3272cdf92f35b0ffad7a81ff12 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Mon, 1 Sep 2025 09:31:47 +0800 Subject: [PATCH] Added head component --- fwt/components/Head/Head.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 fwt/components/Head/Head.tsx diff --git a/fwt/components/Head/Head.tsx b/fwt/components/Head/Head.tsx new file mode 100644 index 0000000..8299bc9 --- /dev/null +++ b/fwt/components/Head/Head.tsx @@ -0,0 +1,20 @@ +interface Props { + title: string + name: string + description: string +} + +export default (props: Props) => { + return ( + <> + + + + + + + {props.title} + + + ) +}