aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/hosted/hosted-astro-project/src/pages/index.astro
blob: 7d2cfcdc320ae3b7d5854e932a02792c248061c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
import { Image } from 'astro:assets';
import penguin from '../assets/penguin.png';
---

<Image src={penguin} width={300} alt="" />

<Image
	src="https://images.unsplash.com/photo-1567674867291-b2595ac53ab4"
	width={300}
	height={400}
	alt="Astro"
/>