Changed from astro to pure solidjs

This commit is contained in:
Patrick Alvin Alcala 2025-09-23 18:38:13 +08:00
parent 3203e91c5a
commit e85dc60101
76 changed files with 2281 additions and 3843 deletions

View file

@ -0,0 +1,13 @@
@use '/src/styles/breakpoint.sass' as view
.footer
padding: 1rem 0
margin: 0 2rem
position: fixed
bottom: 0
width: 100%
opacity: 0.8
font-size: 1rem
@media only screen and (max-width: view.$tablet)
font-size: 0.75rem

View file

@ -0,0 +1,16 @@
import './Footer.sass'
import type { JSXElement } from 'solid-js'
interface Props {
children: JSXElement
}
export default (props: Props) => {
return (
<>
<footer class="footer">
<small>{props.children}</small>
</footer>
</>
)
}