Added footer and text edit
This commit is contained in:
parent
91ab13230d
commit
de35dbb953
1 changed files with 19 additions and 7 deletions
|
|
@ -3,25 +3,37 @@ import Layout from '../layouts/Layout.astro'
|
||||||
import Button from '../../fwt/components/Button/Button'
|
import Button from '../../fwt/components/Button/Button'
|
||||||
import Logo from '../../fwt/components/Logo/Logo'
|
import Logo from '../../fwt/components/Logo/Logo'
|
||||||
import OptimizeLogo from '../../fwt/components/Optimizer/OptimizeLogo'
|
import OptimizeLogo from '../../fwt/components/Optimizer/OptimizeLogo'
|
||||||
|
import OptimizeImage from '../../fwt/components/Optimizer/OptimizeImage'
|
||||||
import Link from '../../fwt/components/Link/Link'
|
import Link from '../../fwt/components/Link/Link'
|
||||||
import Counter from '../components/Counter/Counter'
|
import Counter from '../components/Counter/Counter'
|
||||||
import Page from '../../fwt/components/Page/Page'
|
import Page from '../../fwt/components/Page/Page'
|
||||||
|
import Footer from '../../fwt/components/Footer/Footer'
|
||||||
|
import Row from '../../fwt/components/Row/Row'
|
||||||
|
import Image from '../../fwt/components/Image/Image'
|
||||||
|
import PA1 from '../../fwt/images/pat-alcala.avif'
|
||||||
|
import PA2 from '../../fwt/images/pat-alcala.webp'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="FWT">
|
<Layout title="FWT">
|
||||||
<Page alignment="column">
|
<Page alignment="column">
|
||||||
<Link to="https://git.patalcala.com/patalcala9/fwt">
|
<Link to="https://git.patalcala.com/patalcala9/fwt">
|
||||||
<!-- <OptimizeLogo size={250} /> -->
|
|
||||||
<Logo size={250} />
|
<Logo size={250} />
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<h1>Fast WebApp Template</h1>
|
<h1>Fast WebApp Template</h1>
|
||||||
<Counter client:load />
|
<Counter client:load />
|
||||||
<Button edges="rounded" label="Show Built-in Components" to="/next" />
|
<Button edges="rounded" label="FWT Components" to="/next" />
|
||||||
</Page>
|
|
||||||
|
|
||||||
<style lang="sass">
|
<Footer>
|
||||||
h1
|
<Row content="right" gap={0.5}>
|
||||||
color: #3377AC
|
<Image avif={PA1.src} webp={PA2.src} size={100} />
|
||||||
</style>
|
<span>By: Pat Alcala</span>
|
||||||
|
</Row>
|
||||||
|
</Footer>
|
||||||
|
|
||||||
|
<style lang="sass">
|
||||||
|
h1
|
||||||
|
color: #3377AC
|
||||||
|
</style>
|
||||||
|
</Page>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue