Initial commit

This commit is contained in:
Patrick Alvin Alcala 2025-10-24 16:09:57 +08:00
commit 6e8391f7d1
77 changed files with 6391 additions and 0 deletions

29
src/pages/index.astro Normal file
View file

@ -0,0 +1,29 @@
---
import Layout from '../layouts/Layout.astro'
import { Button, Logo, Link, Page, Row, Image, Column } from '../../fwt/'
import Card from '../components/Card/Card'
import OLA from '../../fwt/images/ocbo-portal.avif'
import OLW from '../../fwt/images/ocbo-portal.webp'
import OcboLogoA from '../../fwt/images/ocbologo.avif'
import OcboLogoW from '../../fwt/images/ocbologo.webp'
---
<Layout title="FWT">
<Page alignment="column">
<Column>
<Row content="center">
<Image avif={OLA.src} webp={OLW.src} size={150} />
<h1>OCBO Portal for Applications</h1>
</Row>
<Card avif={OcboLogoA.src} webp={OcboLogoW.src} name="OCBO e-Sign" description="A secure way of signing permits." />
</Column>
</Page>
<style lang="sass">
h1
color: #3377AC
margin: 0
font-size: 3.25rem
</style>
</Layout>