web3extension.io/src/pages/index.astro

17 lines
516 B
Plaintext

---
import Layout from '../layouts/Layout.astro';
import Install from '../components/Home/Install/Install.astro';
import Access from '../components/Home/Access/Access.astro';
import Features from '../components/Home/Features/Features.astro';
import Message from '../components/Home/Message/Message.astro';
import Socials from '../components/Home/Socials/Socials.astro';
---
<Layout view="home" title="Web3Extension - Gateway to Web3">
<Install />
<Access />
<Features />
<Message />
<Socials />
</Layout>