2026-02-07 13:36:51 -05:00
|
|
|
---
|
|
|
|
|
import Welcome from '../components/Welcome.astro';
|
|
|
|
|
import Layout from '../layouts/Layout.astro';
|
2026-02-23 07:53:57 -05:00
|
|
|
import Image from 'astro/components/Image.astro';
|
2026-02-23 17:04:45 -05:00
|
|
|
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>
|
2026-02-23 17:04:45 -05:00
|
|
|
<PokedexHeader />
|
2026-02-07 13:36:51 -05:00
|
|
|
<Welcome />
|
|
|
|
|
</Layout>
|