Added fwt components

This commit is contained in:
Patrick Alvin Alcala 2025-09-04 12:05:03 +08:00
parent b7409d1c13
commit b2cbd947c5
30 changed files with 852 additions and 0 deletions

View file

@ -0,0 +1,3 @@
a
text-decoration: none
color: inherit

View file

@ -0,0 +1,16 @@
import './Link.sass'
interface Props {
to: string
children?: any
}
export default (props: Props) => {
return (
<>
<a href={props.to} aria-label={`Go to ${props.to}`} data-astro-prefetch>
{props.children}
</a>
</>
)
}