Added index.ts and rearranged files
This commit is contained in:
parent
6e112c5934
commit
f22261fff3
20 changed files with 41 additions and 39 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import Input from '../../../fwt/Input'
|
||||
import Input from '../../../fwt/components/Input'
|
||||
import { createSignal } from 'solid-js'
|
||||
|
||||
const [sample, setSample] = createSignal('')
|
||||
|
|
|
|||
|
|
@ -4,9 +4,7 @@ const { title } = Astro.props
|
|||
const websiteName = 'Template'
|
||||
const websiteDescription = 'This is just a template.'
|
||||
|
||||
import Background from '../../fwt/Background'
|
||||
// import OptimizeBackground from '../../fwt/components/Optimizer/OptimizeBackground'
|
||||
import HTML from '../../fwt/HTML'
|
||||
import { Background, HTML } from '../../fwt'
|
||||
---
|
||||
|
||||
<HTML title={title} name={websiteName} description={websiteDescription} font="inter">
|
||||
|
|
|
|||
|
|
@ -1,18 +1,9 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Button from '../../fwt/Button'
|
||||
import Logo from '../../fwt/Logo'
|
||||
// import OptimizeLogo from '../../fwt/components/Optimizer/OptimizeLogo'
|
||||
// import OptimizeImage from '../../fwt/components/Optimizer/OptimizeImage'
|
||||
import Link from '../../fwt/Link'
|
||||
import { Button, Logo, Link, Page, Footer, Row, Image, Copyright } from '../../fwt/'
|
||||
import Counter from '../components/Counter/Counter'
|
||||
import Page from '../../fwt/Page'
|
||||
import Footer from '../../fwt/Footer'
|
||||
import Row from '../../fwt/Row'
|
||||
import Image from '../../fwt/Image'
|
||||
import PA1 from '../../fwt/images/pat-alcala.avif'
|
||||
import PA2 from '../../fwt/images/pat-alcala.webp'
|
||||
import Copyright from '../../fwt/Copyright'
|
||||
|
||||
// const sample = import.meta.env.SAMPLE
|
||||
---
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import Button from '../../fwt/Button'
|
||||
import Image from '../../fwt/Image'
|
||||
import Page from '../../fwt/Page'
|
||||
import { Button, Page, Row, Image } from '../../fwt'
|
||||
import sample1 from '../../fwt/images/sample.avif'
|
||||
import sample2 from '../../fwt/images/sample.webp'
|
||||
// import OptimizeImage from '../../fwt/components/Optimizer/OptimizeImage'
|
||||
import Row from '../../fwt/Row'
|
||||
// import Column from '../../fwt/components/Column/Column'
|
||||
---
|
||||
|
||||
<Layout title="Home">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue