mirror of
https://github.com/LBRYFoundation/lbry-tech.git
synced 2025-03-04 14:57:55 +00:00
21 lines
529 B
Text
21 lines
529 B
Text
|
---
|
||
|
import Layout from '../layouts/Layout.astro';
|
||
|
import Hero from '../components/Hero.astro';
|
||
|
import Resources from '../components/Resources.astro';
|
||
|
import Featured from '../components/Featured.astro';
|
||
|
import Contribute from '../components/Contribute.astro';
|
||
|
import { Image } from "astro-preload/components";
|
||
|
|
||
|
import '../styles/index.css';
|
||
|
|
||
|
import { featured, contributions, resources, AWESOME_LBRY } from '../config';
|
||
|
---
|
||
|
|
||
|
<Layout>
|
||
|
<div class="wrapper">
|
||
|
<Hero/>
|
||
|
<Resources/>
|
||
|
<Featured/>
|
||
|
<Contribute/>
|
||
|
</div>
|
||
|
</Layout>
|