Files
pokemon/src/pages/index.astro

15 lines
518 B
Plaintext
Raw Normal View History

2026-02-07 13:36:51 -05:00
---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.astro';
import Image from 'astro/components/Image.astro';
import PokedexHeader from '../components/PokedexHeader.astro';
2026-02-07 13:36:51 -05:00
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
---
<Layout>
<PokedexHeader />
2026-02-07 13:36:51 -05:00
<Welcome />
</Layout>