16 lines
394 B
Plaintext
16 lines
394 B
Plaintext
---
|
|
import Layout from '../layouts/Layout.astro';
|
|
import Hero from '../components/Hero.astro';
|
|
import Features from '../components/Features.astro';
|
|
import Platforms from '../components/Platforms.astro';
|
|
import Pricing from '../components/Pricing.astro';
|
|
---
|
|
|
|
<Layout title="Wallabicher - Monitoriza Marketplaces Automáticamente">
|
|
<Hero />
|
|
<Features />
|
|
<Platforms />
|
|
<Pricing />
|
|
</Layout>
|
|
|