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,36 @@
import { Button, Logo, Link, Page, Row, Column, Display, Padding } from '../../components'
// import RegistrationForm from '../components/RegistrationForm/RegistrationForm'
export default () => {
return (
<>
<Page alignment="column">
<Padding left={4.75} right={4.75}>
<Display desktop tablet>
<Row content="split">
<Link to="/">
<Row content="left" gap={2}>
<Logo size={200} />
<h1>OCBO e-Sign</h1>
</Row>
</Link>
<Button label="Register" edges="curved" to="/main" />
</Row>
<Display mobile>
<Column content="center">
<Link to="/">
<Logo size={120} />
<h1>OCBO e-Sign</h1>
</Link>
<Button label="Register" edges="curved" to="/main" />
</Column>
</Display>
</Display>
</Padding>
</Page>
</>
)
}