2022-07-01 15:47:48 +00:00
|
|
|
---
|
|
|
|
import socialJpg from '../assets/social.jpg';
|
2022-09-01 20:31:53 +00:00
|
|
|
import introJpg from '../assets/blog/introducing astro.jpg';
|
2022-07-20 00:33:11 +00:00
|
|
|
import { Image } from '@astrojs/image/components';
|
2022-07-01 15:47:48 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<!-- Head Stuff -->
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-09-01 21:24:07 +00:00
|
|
|
<Image id="hero" src="/hero.jpg" width={768} height={414} format="webp" alt="hero" />
|
2022-08-30 21:09:44 +00:00
|
|
|
<br />
|
2022-09-01 21:24:07 +00:00
|
|
|
<Image id="spaces" src={introJpg} width={768} height={414} format="webp" alt="spaces" />
|
2022-09-01 20:31:53 +00:00
|
|
|
<br />
|
2022-09-01 21:24:07 +00:00
|
|
|
<Image id="social-jpg" src={socialJpg} width={506} height={253} alt="social-jpg" />
|
2022-07-01 15:47:48 +00:00
|
|
|
<br />
|
2022-09-01 21:24:07 +00:00
|
|
|
<Image id="google" src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" width={544} height={184} format="webp" alt="Google" />
|
2022-07-01 15:47:48 +00:00
|
|
|
<br />
|
2022-09-01 21:24:07 +00:00
|
|
|
<Image id="inline" src={import('../assets/social.jpg')} width={506} alt="inline" />
|
2022-08-22 19:45:34 +00:00
|
|
|
<br />
|
2022-09-01 21:24:07 +00:00
|
|
|
<Image id="query" src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png?token=abc" width={544} height={184} format="webp" alt="query" />
|
2022-09-07 13:56:07 +00:00
|
|
|
<br />
|
|
|
|
<Image id="ipsum" src="https://picsum.photos/200/300" width={200} height={300} alt="ipsum" format="jpeg" />
|
2022-07-01 15:47:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|