generated from polymech/site-template
13 lines
351 B
Plaintext
13 lines
351 B
Plaintext
---
|
|
import { Picture } from "astro-imagetools/components";
|
|
import MainLayout from "../../layouts/MainLayout.astro";
|
|
---
|
|
|
|
<MainLayout importMetaUrl={import.meta.url}>
|
|
<h1>Astro ImageTools <code>{"<Picture />"}</code> Component Example</h1>
|
|
|
|
<br />
|
|
|
|
<Picture src="https://picsum.photos/1024/768/" alt="A random image" />
|
|
</MainLayout>
|