Used copyright component

This commit is contained in:
Patrick Alvin Alcala 2025-09-02 14:36:20 +08:00
parent 0116e1718b
commit 6bae38e1ca

View file

@ -12,6 +12,7 @@ import Row from '../../fwt/components/Row/Row'
import Image from '../../fwt/components/Image/Image' import Image from '../../fwt/components/Image/Image'
import PA1 from '../../fwt/images/pat-alcala.avif' import PA1 from '../../fwt/images/pat-alcala.avif'
import PA2 from '../../fwt/images/pat-alcala.webp' import PA2 from '../../fwt/images/pat-alcala.webp'
import Copyright from '../../fwt/components/Copyright/Copyright'
--- ---
<Layout title="FWT"> <Layout title="FWT">
@ -22,12 +23,13 @@ import PA2 from '../../fwt/images/pat-alcala.webp'
<h1>Fast WebApp Template</h1> <h1>Fast WebApp Template</h1>
<Counter client:idle /> <Counter client:idle />
<Button edges="rounded" label="FWT Components" to="/next" /> <Button edges="rounded" label="FWT Components" to="/next" />
<Footer> <Footer>
<Row content="right" gap={0.5}> <Row content="right" gap={0.5}>
<Image avif={PA1.src} webp={PA2.src} size={100} /> <Image avif={PA1.src} webp={PA2.src} size={100} />
<span>By: Pat Alcala</span> <Copyright year="2025" name="Pat Alcala" />
</Row> </Row>
</Footer> </Footer>