Added link to landing page

This commit is contained in:
Patrick Alvin Alcala 2025-09-22 11:44:57 +08:00
parent 00471abee4
commit 257da50a83

View file

@ -33,69 +33,50 @@ import Table from '../components/Table/Table'
<Padding left={4.75} right={4.75}> <Padding left={4.75} right={4.75}>
<Row content="split"> <Row content="split">
<Display desktop tablet> <Display desktop tablet>
<Row content="left" gap={2}> <Link to="/">
<Logo size={200} /> <Row content="left" gap={2}>
<h1>OCBO e-Sign</h1> <Logo size={200} />
<h1>OCBO e-Sign</h1>
</Row>
</Link>
<Row content="left" gap={1}>
<span class="name">Patrick Alvin Alcala</span>
<Link to="/"><FiLogOut size={25} /></Link>
</Row> </Row>
</Display> </Display>
<Row content="left" gap={1}> <Row content="center">
<span class="name">Patrick Alvin Alcala</span> <h2>List of Ready to Approve and Sign OP (Order of Payments)</h2>
<Link to="/"><FiLogOut size={25} /></Link>
</Row> </Row>
<Table client:load />
</Row> </Row>
<Row content="center">
<h2>List of Ready to Approve and Sign OP (Order of Payments)</h2>
</Row>
<Table client:load />
<!-- <table class="table">
<thead>
<tr>
<th>Application Number</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>25-000011</td>
<td>123</td>
<td id="modal-button"><Button label="Show Details" design="bu-ghost" /></td>
</tr>
<tr>
<td>25-000012</td>
<td>Another Name</td>
<td><Button label="Show Details" design="bu-ghost" /></td>
</tr>
</tbody>
</table> -->
</Padding> </Padding>
<div id="modal" style="display: none">
<Modal background="rgba(0,0,0,0.5)">
<h1>SAMPLE</h1>
</Modal>
</div>
</Page> </Page>
<div id="modal" style="display: none"> <style lang="sass">
<Modal background="rgba(0,0,0,0.5)"> @use '/src/styles/variables.sass' as vars
<h1>SAMPLE</h1> @use 'sass:color'
</Modal>
</div> .padding
margin: 11rem
border: 1px solid red
h1
font-size: 3.25rem
color: vars.$textColor
.div
width: 8rem
.name
font-size: 1.25rem
</style>
</Layout> </Layout>
<style lang="sass">
@use '/src/styles/variables.sass' as vars
@use 'sass:color'
.padding
margin: 11rem
border: 1px solid red
h1
font-size: 3.25rem
color: vars.$textColor
.div
width: 8rem
.name
font-size: 1.25rem
</style>