Compare commits
No commits in common. "de35dbb95370356a111504f19f64902f7b662eda" and "91015d72de39cf820d94ee44946379adedc6be4f" have entirely different histories.
de35dbb953
...
91015d72de
8 changed files with 11 additions and 43 deletions
|
|
@ -1,8 +0,0 @@
|
||||||
.footer
|
|
||||||
padding: 1rem 0
|
|
||||||
margin: 0 20rem
|
|
||||||
position: fixed
|
|
||||||
bottom: 0
|
|
||||||
width: 100%
|
|
||||||
font-size: 0.75rem
|
|
||||||
opacity: 0.8
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
import './Footer.sass'
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
children: any
|
|
||||||
}
|
|
||||||
|
|
||||||
export default (props: Props) => {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<footer class="footer">{props.children}</footer>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
.page
|
.page
|
||||||
margin: 2rem
|
margin: 2rem
|
||||||
height: auto
|
height: auto
|
||||||
min-height: 90vh
|
|
||||||
|
|
||||||
.column
|
.column
|
||||||
@extend .page
|
@extend .page
|
||||||
display: flex
|
display: flex
|
||||||
flex-direction: column
|
flex-direction: column
|
||||||
|
text-align: center
|
||||||
|
justify-content: center
|
||||||
align-items: center
|
align-items: center
|
||||||
|
|
||||||
.row
|
.row
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import './Page.sass'
|
import './Page.sass'
|
||||||
import { Show } from 'solid-js'
|
import { Show, Switch, Match } from 'solid-js'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
children?: any
|
children?: any
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.1 KiB |
|
|
@ -3,37 +3,25 @@ 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="FWT Components" to="/next" />
|
<Button edges="rounded" label="Show Built-in Components" to="/next" />
|
||||||
|
</Page>
|
||||||
<Footer>
|
|
||||||
<Row content="right" gap={0.5}>
|
|
||||||
<Image avif={PA1.src} webp={PA2.src} size={100} />
|
|
||||||
<span>By: Pat Alcala</span>
|
|
||||||
</Row>
|
|
||||||
</Footer>
|
|
||||||
|
|
||||||
<style lang="sass">
|
<style lang="sass">
|
||||||
h1
|
h1
|
||||||
color: #3377AC
|
color: #3377AC
|
||||||
</style>
|
</style>
|
||||||
</Page>
|
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import Column from '../../fwt/components/Column/Column'
|
||||||
|
|
||||||
<Layout title="Home">
|
<Layout title="Home">
|
||||||
<Page alignment="column">
|
<Page alignment="column">
|
||||||
<h1>FWT Components</h1>
|
<h1>Built-in Components</h1>
|
||||||
<Button edges="rounded" label="Back to Home" to="/" />
|
<Button edges="rounded" label="Back to Home" to="/" />
|
||||||
|
|
||||||
<section class="image">
|
<section class="image">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue